@php $keyContacts = old('key_contacts', $customer->key_contacts ?? []); @endphp {{-- If there are no contacts (on create or validation failure with no contacts), show one empty item --}} @if (empty($keyContacts)) @include('front.modules.kua_agent.customers.partials.key-contact-item', [ 'index' => 0, 'contact' => [], ]) @else @foreach ($keyContacts as $index => $contact) @include('front.modules.kua_agent.customers.partials.key-contact-item', [ 'index' => $index, 'contact' => $contact, ]) @endforeach @endif
@push('pageJs') @endpush