@if ( isset(Site::contact()->contact_phone) && Site::contact()->contact_phone != null )
@endif
{{ translate('phone') }}
{{ Site::contact()->contact_phone ?? '' }}
@if ( isset(Site::contact()->contact_email) && Site::contact()->contact_email != null )
@endif
{{ translate('email') }}
{{ Site::contact()->contact_email ?? '' }}
@if ( isset(Site::contact()->contact_address) && Site::contact()->contact_address != null )
@endif
{{ translate('address') }}
{{ Site::contact()->contact_address ?? '' }}
{!! Site::contact()->google_maps ?? '' !!}
{{ translate('contact_form') }}
@if ($errors->any())-
@foreach ($errors->all() as $error)
- {{ $error }} @endforeach
{{ session('success') }}
@elseif(session('error'))
{{ session('error') }}
@endif
@endif