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