@csrf {{-- Form Fields --}}
@error('name') {{ $message }} @enderror
@error('city') {{ $message }} @enderror
@error('province') {{ $message }} @enderror
@error('address') {{ $message }} @enderror
@error('description') {{ $message }} @enderror
@error('opening_hours') {{ $message }} @enderror
@error('closing_hours') {{ $message }} @enderror
{{-- Featured Image Upload --}}
@error('featured_image') {{ $message }} @enderror {{-- Tampilkan gambar lama --}} @if ($current_featured_image)

Current Image:

@endif
{{-- Gallery Upload --}}
@error('gallery.*') {{ $message }} @enderror {{-- Tampilkan galeri lama --}} @if(count($current_gallery) > 0)

Current Gallery:

@foreach($current_gallery as $imagePath) @endforeach
@endif
{{-- Facilities --}}
@error('newFacility') {{ $message }} @enderror
@foreach($facilities as $index => $facility)
{{ $facility }}
@endforeach