From 5cd07bfa90a82cb7bd584e26e194c177f987bc17 Mon Sep 17 00:00:00 2001 From: developer Date: Thu, 16 Apr 2026 11:40:34 +0800 Subject: [PATCH] =?UTF-8?q?fix!=20=D1=81=D0=BA=D0=BE=D1=80=D1=80=D0=B5?= =?UTF-8?q?=D0=BA=D1=82=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=20=D1=81=D1=82?= =?UTF-8?q?=D0=B8=D0=BB=D1=8C=20=D1=82=D0=B0=D0=B1=D0=BE=D0=B2=20=D0=B4?= =?UTF-8?q?=D0=BB=D1=8F=20=D0=BA=D0=BE=D0=BD=D1=82=D0=B0=D0=BA=D1=82=D0=BE?= =?UTF-8?q?=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ClientCreateForm/Views/livewire/form.blade.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/app/Modules/ClientCreateForm/Views/livewire/form.blade.php b/app/Modules/ClientCreateForm/Views/livewire/form.blade.php index 4134f55..9abffcc 100644 --- a/app/Modules/ClientCreateForm/Views/livewire/form.blade.php +++ b/app/Modules/ClientCreateForm/Views/livewire/form.blade.php @@ -32,11 +32,15 @@ class="nav-item col overflow-hidden @if ($contactIndex == $currentContactIndex) - - @if (array_key_exists($contactIndex, $contactLabels)) - {{ $contactLabels[$contactIndex] }} + + @if($contactItem['firstName']) + {{ $contactItem['firstName'] }} @else - Контакт {{ $contactIndex + 1 }} + @if (array_key_exists($contactIndex, $contactLabels)) + {{ $contactLabels[$contactIndex] }} + @else + Контакт {{ $contactIndex + 1 }} + @endif @endif