@extends('master.front') @section('meta') @endsection @section('title') {{__('Contact')}} @endsection @section('content')

{{ __('Tell Us Your Message :') }}

@csrf
@error('first_name')

{{$message}}

@enderror
@error('last_name')

{{$message}}

@enderror
@error('email')

{{$message}}

@enderror
@error('phone')

{{$message}}

@enderror
@error('message')

{{$message}}

@enderror
@if ($setting->recaptcha == 1)
{!! NoCaptcha::renderJs() !!} {!! NoCaptcha::display() !!} @if ($errors->has('g-recaptcha-response')) @php $errmsg = $errors->first('g-recaptcha-response'); @endphp

{{__("$errmsg")}}

@endif
@endif
@endsection