@extends(get_view('index')) @section('title') {{ translate('contact') }} - @endsection @section('header') @endsection @section('content') @include(get_view('components.pages.page-title'), ['title' => translate('contact')])
@if ( isset(Site::contact()->contact_phone) && Site::contact()->contact_phone != null ) @endif @if ( isset(Site::contact()->contact_email) && Site::contact()->contact_email != null )

{{ __('E-Posta Gönderin') }}

{{ Site::contact()->contact_email ?? '' }}
@endif
@if ( isset(Site::contact()->contact_address) && Site::contact()->contact_address != null )

{{ __('Bizi Ziyaret Edin') }}

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

{{ __('Bize Mesaj Bırakın') }}

Contact us or give us a call to discover how we can help.

@csrf @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@else @if (session('success'))
{{ __('İşlem Başarılı!') }} {{ session('success') }}
@elseif(session('error'))
{{ __('Hata!') }} {{ session('error') }}
@endif @endif

{{ __('Şirket Merkezi') }}

Altıevler Mah. Can Sokak No:5 Narlıdere – İzmir

{!! Site::contact()->google_maps ?? '' !!}
@endsection @section('footer') @endsection