@component('open._layouts.app', [ 'title' => $pageContact->name, 'meta' => $pageContact->meta(), ])
{{ Breadcrumbs::render('contactWrite') }} @include('open.contact._partials.contactHeader')
@include('open._layouts._partials.alerts.messages') {{ html()->form('POST', route('contact.store'))->open() }} {{ html()->openForm()->required()->text('last_name', trans('form.last_name')) }} {{ html()->openForm()->text('first_name', trans('form.first_name')) }} {{ html()->openForm()->email('email', trans('form.email')) }} {{ html()->openForm()->phone('phone', trans('form.phone')) }} {{ html()->openForm()->text('zip', trans('form.zip')) }} {{ html()->openForm()->textarea('comment', trans('form.comment')) }} {!! app('mathcaptcha')->input() !!} @if(request()->get('office')) @endif

{{ html()->submit(trans('form.send'))->class('btn tag_contact_submit') }}

{{ html()->form()->close() }}
@endcomponent