{{__("Contact us")}}
{{__("Don't hesitate to contact us for any matter. We will get back to you asap.")}}
@csrf
@if(session('success'))
{{session('success')}}
@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(getSetting('security.captcha_driver') !== 'none')
@include('elements.captcha-field')
@endif