@extends('layout.master') @section('title','İletişim') @section('content')

İletişim Bilgilerimiz

Çalışma adresimiz

Çalışma Saatlerimiz

  • Pazartesi - Cumartesi
    08:00 - 18:00
  • Pazar
    -
Görüşleriniz ya da sorularınız için bize ulaşabilirsiniz!
@if(Session::has('flash_message_error'))
{!! session('flash_message_error') !!}
@endif @if(Session::has('flash_message_success'))
{!! session('flash_message_success') !!}
@endif
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('subject')) {{ $errors->first('subject') }} @endif
@if ($errors->has('message')) {{ $errors->first('message') }} @endif


@endsection