@extends($user_shop ?'web.user.layouts.layout' : 'web.layouts.layout') @section('content')

{{ __('website.contact_hl') }}

{{ __('website.contact_subl') }}

{!! Form::open(['action' => '/kontakt']) !!}
* {{trans('register.required_fields')}}
{!! Form::label('first_name', __('Salutation').'*') !!} {!! Form::select('salutation', [''=>__('please select'), 'mr'=>__('MR'), 'ms'=>__('MS')], '', ['class' => 'form-control '.($errors->has('salutation') ? 'error is-invalid' : '')]) !!} @if ($errors->has('salutation'))
{{ $errors->first('salutation') }}
@endif
{!! Form::label('first_name', __('First name').'*') !!} {!! Form::text('first_name', '', ['class' => 'form-control '.($errors->has('first_name') ? 'error is-invalid' : ''), 'placeholder'=>__('First name'), '']) !!} @if ($errors->has('first_name'))
{{ $errors->first('first_name') }}
@endif
{!! Form::label('last_name', __('Last name').'*') !!} {!! Form::text('last_name', '', ['class' => 'form-control '.($errors->has('last_name') ? 'error is-invalid' : ''), 'placeholder'=>__('Last name'), '']) !!} @if ($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif
{!! Form::label('email', __('E-Mail Address').'*') !!} {!! Form::email('email', '', ['class' => 'form-control '.($errors->has('email') ? 'error is-invalid' : ''), 'placeholder'=>__('E-Mail Address'), '']) !!} @if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
{!! Form::label('phone', __('Phone')) !!} {!! Form::text('phone', null, ['class' => 'form-control', 'placeholder'=>__('Phone')]) !!}
{!! Form::label('message', __('Nachricht*')) !!} {!! Form::textarea('message', null, ['class' => 'form-control '.($errors->has('message') ? 'error is-invalid' : ''), 'placeholder'=>__('website.your_message_to_us')]) !!} @if ($errors->has('message'))
{{ $errors->first('message') }}
@endif
@if(!$user_shop || $user_shop->id === 22)
{!! Form::label('sales_partnership', __('website.your_enquiry_relate_partnership')) !!}
@if ($errors->has('sales_partnership'))
{{ $errors->first('sales_partnership') }}
@endif
@endif

@if ($errors->has('accepted_data_protection'))
{{ $errors->first('accepted_data_protection') }}
@endif
@if ($errors->has('g-recaptcha-response'))
{{ $errors->first('g-recaptcha-response') }}
@endif
{!! Form::close() !!}
@include('web.templates._side_contact')
@endsection @section('scripts') @if(!$user_shop || $user_shop->id === 22) @endif @endsection