{{ __('Contact information') }}

@if ($aboutUs = theme_option('about-us'))
{!! BaseHelper::clean($aboutUs) !!}
@endif @if ($companyName = theme_option('company_name'))
{{ $companyName }}
@endif @if($address = theme_option('address'))
{{ __('Address') }}: {{ $address }}
@endif @if ($hotline = theme_option('hotline'))
{{ __('Hotline') }}: {{ $hotline }}
@endif @if($email = theme_option('email'))
{{ __('Email') }}: {{ $email }}
@endif

{{ __('HOW WE CAN HELP YOU?') }}

@csrf {!! apply_filters('pre_contact_form', null) !!}
@if (is_plugin_active('captcha')) @if (setting('enable_captcha'))
{!! Captcha::display() !!}
@endif @if (setting('enable_math_captcha_for_contact_form', 0))
{!! app('math-captcha')->input([ 'class' => 'form-control', 'id' => 'math-group', 'placeholder' => app('math-captcha')->label(), ]) !!}
@endif @endif {!! apply_filters('after_contact_form', null) !!}