@extends('layouts.app') @section('site_title', formatTitle([__('Contact'), config('settings.title')])) @section('head_content') @endsection @section('content')

{{ __('Contact') }}

{{ __('Get in touch with us.') }}

@include('shared.message')
@csrf
@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(config('settings.captcha_contact')) {!! NoCaptcha::displaySubmit('contact-form', __('Send'), ['data-theme' => (Cookie::get('dark_mode') == 1 ? 'dark' : 'light'), 'data-size' => 'invisible', 'class' => 'btn btn-block btn-primary']) !!} {!! NoCaptcha::renderJs(__('lang_code')) !!} @else @endif @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
{{ __('Contact') }}
{{ __('Get in touch with us.') }}
@endsection @include('shared.sidebars.user')