@extends('FrontEnd.Layouts.main') @section('pagetitle') {{ __('messages.CONTACT') . ' - ' . __('messages.SITENAME') }} @endsection @section('title') {{ __('messages.CONTACT') }} @endsection @section('baseurl') {{ route('home') }} @endsection @section('logo') {{ asset('FrontEnd/imgs/logo.png') }} @endsection @section('image') {{ asset('FrontEnd/imgs/logo.png') }} @endsection @section('description') {{ __('messages.SITENAME') . ' | ' . __('messages.SITESLOGAN') }} @endsection @section('content') @if (Session::has('success'))
{{ Session::get('success') }}
@endif @if (Session::has('error'))
{{ Session::get('error') }}
@endif
@include('FrontEnd.Layouts.breadcrumb')

{{ __('messages.SEND_A_MESSAGE') }}

@csrf
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('subject'))
{{ $errors->first('subject') }}
@endif
@if ($errors->has('message'))
{{ $errors->first('message') }}
@endif
@if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif

{{ __('messages.Contact Now') }}

@endsection @push('custom') @endpush