Edit Facility

@if (session()->has('message'))
{{ session('message') }}
@endif @if (session()->has('error'))
{{ session('error') }}
@endif
@error('location_name')
{{ $message }}
@enderror
@error('location_phone')
{{ $message }}
@enderror
@error('location_fax')
{{ $message }}
@enderror
@error('address')
{{ $message }}
@enderror
@error('city')
{{ $message }}
@enderror
@error('state')
{{ $message }}
@enderror
@error('postcode')
{{ $message }}
@enderror
@error('shop_licence')
{{ $message }}
@enderror
@error('shop_tax_id')
{{ $message }}
@enderror

Body Shop Contacts
@if(count($contacts) > 0)
@foreach($contacts as $index => $contact) @endforeach
Name Email Actions
@if($editingContactIndex === $index) @error('tempContact.name')
{{ $message }}
@enderror @else @if(!empty($contact['name'])) {{ $contact['name'] }} @else Not specified @endif @endif
@if($editingContactIndex === $index) @error('tempContact.email')
{{ $message }}
@enderror @else @if(!empty($contact['email'])) {{ $contact['email'] }} @else Not specified @endif @endif
@if($editingContactIndex === $index)
@else
@endif
@else
No contacts added yet. Click "Add Contact" to add the first contact.
@endif
Contacts with empty name or email will not be saved. You can add multiple contacts for this facility.