@extends(get_view('index')) @section('title'){{ __('İletişim') }} - @endsection @section('menu-active-contact') active @endsection @section('header') @endsection @section('content') @include(get_view('components.pages.page-title'), ['title' => __('İletişim'), 'background_image' => get_asset('images/image2.jpg')])
@if ( isset(Site::contact()->contact_phone) && Site::contact()->contact_phone != null ) @endif
@if ( isset(Site::contact()->contact_email) && Site::contact()->contact_email != null ) @endif
@if ( isset(Site::contact()->contact_address) && Site::contact()->contact_address != null )

{{ __('Adres') }}

{{ Site::contact()->contact_address ?? '' }}

@endif
{!! Site::contact()->google_maps ?? '' !!}

{{ __('İletişim Formu') }}

{{ __('Bize mesaj bırakın, sizinle iletişime geçelim.') }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@else @if (session('success'))
{{ session('success') }}
@elseif(session('error'))
{{ session('error') }}
@endif @endif
@csrf
{{ __('Max') }}: 255

@endsection @section('footer') @endsection