@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') @if (config('settings.contact_form'))
@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_driver')) @include('shared.captcha', ['id' => 'contact-form']) {{ __('Send') }} @if ($errors->has(formatCaptchaFieldName())) {{ __($errors->first(formatCaptchaFieldName())) }} @endif @else @endif
@endif @if (config('settings.contact_form') && ((config('settings.contact_email') && config('settings.contact_email_public')) || (config('settings.contact_phone')) || config('settings.contact_address')))

{{ mb_strtolower(__('Or')) }}

@endif @if ((config('settings.contact_email') && config('settings.contact_email_public')) || (config('settings.contact_phone')) || config('settings.contact_address'))
@if(config('settings.contact_email') && config('settings.contact_email_public'))
@include('icons.email', ['class' => 'mt-1 flex-shrink-0 width-4 height-4 fill-current text-muted ' . (__('lang_dir') == 'rtl' ? 'ml-3' : 'mr-3')])
@endif @if(config('settings.contact_phone'))
@include('icons.call', ['class' => 'mt-1 flex-shrink-0 width-4 height-4 fill-current text-muted ' . (__('lang_dir') == 'rtl' ? 'ml-3' : 'mr-3')])
@endif @if(config('settings.contact_address'))
@include('icons.home', ['class' => 'mt-1 flex-shrink-0 width-4 height-4 fill-current text-muted ' . (__('lang_dir') == 'rtl' ? 'ml-3' : 'mr-3')])
{{ config('settings.contact_address') }}
@endif
@endif
{{ __('Contact') }}
{{ __('Get in touch with us.') }}
@endsection @include('shared.sidebars.user')