@extends('layouts.guest') @section('content')

{{ __('landing.contactTitle') }}

{{ __('landing.emailTitle') }}

{{ $restaurant->email }}

{{ __('landing.callTitle') }}

{{ $restaurant->phone_number }}

{{ __('landing.addressTitle') }}

{!! nl2br(e($shopBranch->address ?? $restaurant->address)) !!}
@if(isset($shopBranch) && $shopBranch->lat && $shopBranch->lng) @php $mapId = 'shop_map_'.uniqid(); @endphp

{{ __('landing.mapTitle') }}

{{ $shopBranch->name ?? '' }} · {{ $shopBranch->address ?? $restaurant->address }}
@endif
@endsection