@extends('layouts.app') @section('title', __('nav.contact') . ' — Mon Cheri Beach By Enki') @section('content') {{-- ═══════════════════════════════════════════════ HERO ═══════════════════════════════════════════════ --}}

{{ __('contact.page_title') ?? 'İletişim' }}

{{-- ═══════════════════════════════════════════════ INFO BAR ═══════════════════════════════════════════════ --}}
{{-- ═══════════════════════════════════════════════ MAP + FORM ═══════════════════════════════════════════════ --}}
{{-- ── Map column ── --}}
{{ __('contact.location_label') }}

{{ __('contact.map_title') }}

{{ __('contact.map_sub') }}

{{ __('contact.parking') }}

{{ __('contact.parking_desc') }}

{{ __('contact.opening') }}

{{ __('contact.opening_desc') }}

{{-- ── Form column ── --}}
{{ __('contact.form_label_top') }}

{{ __('contact.form_title') }}

{{ __('contact.form_label') }}

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf {{-- Name + Email --}}
{{-- Phone --}}
{{-- Subject --}}
{{-- Message --}}
{{-- Submit --}}
@push('scripts') @endpush @endsection