{{-- ═══ Restaurant / Hospitality contact fields ═══ --}} {{-- Contact page images — hospitality only --}}

Section Photos

The 3 photos next to the contact info card.

@php $contactImages = [ ['key' => 'image_1', 'label' => 'Main image (large left)', 'file' => 'contact_image_1_file', 'hint' => '782 x 966 px — portrait'], ['key' => 'image_2', 'label' => 'Top right image', 'file' => 'contact_image_2_file', 'hint' => '580 x 436 px — landscape'], ['key' => 'image_3', 'label' => 'Bottom right image', 'file' => 'contact_image_3_file', 'hint' => '582 x 490 px — landscape'], ]; @endphp @foreach($contactImages as $ci)
@php $currentImg = $siteData['contact'][$ci['key']] ?? ''; $imgUrl = $currentImg ? (filter_var($currentImg, FILTER_VALIDATE_URL) ? $currentImg : asset($currentImg)) : ''; @endphp @if($imgUrl)
{{ $ci['label'] }}
@endif {{ $ci['hint'] }}
@endforeach