{{ __('Contact information') }}

@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 @if ($aboutUs = theme_option('about-us'))
{!! BaseHelper::clean($aboutUs) !!}
@endif

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

{!! \Botble\Contact\Forms\Fronts\ContactForm::create() ->setFormOption('class', 'contact-form') ->setFormInputClass('form-control') ->setFormInputWrapperClass('form-group') ->setFormLabelClass('sr-only') ->modify('name', 'text', ['attr' => ['placeholder' => __('Name')]]) ->modify('email', 'email', ['attr' => ['placeholder' => __('Email')]]) ->modify('phone', 'text', ['attr' => ['placeholder' => __('Phone')]]) ->modify('address', 'text', ['attr' => ['placeholder' => __('Address')]]) ->modify( 'open_phone_wrapper_column_wrapper', 'html', ['html' => sprintf('
', 12, 12, 'phone')], true ) ->modify( 'open_address_wrapper_column_wrapper', 'html', ['html' => sprintf('
', 12, 12, 'address')], true ) ->modify('subject', 'text', ['attr' => ['placeholder' => __('Subject')]]) ->modify('content', 'textarea', ['attr' => ['placeholder' => __('Message')]]) ->modify( 'submit', 'submit', Botble\Base\Forms\FieldOptions\ButtonFieldOption::make() ->cssClass('btn-special') ->label(__('Send message')) ->wrapperAttributes(['class' => 'form-actions mt-20']) ->toArray(), true ) ->addAsteriskToMandatoryFields() ->renderForm() !!}