@extends($user_shop ?'web.user.layouts.layout' : 'web.layouts.layout') @section('content') {{ __('website.contact_hl') }} {{ __('website.contact_subl') }} {!! Form::open(['url' => '/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')) !!} {!! Form::radio('sales_partnership', 'JA', '', ['class'=> 'form-control']) !!} {{ __('website.yes') }} {!! Form::radio('sales_partnership', 'NEIN', '', ['class'=> 'form-control']) !!} {{ __('website.no') }} @if ($errors->has('sales_partnership')) {{ $errors->first('sales_partnership') }} @endif {{ __('website.through_whom_label') }} {!! Form::textarea('sales_partnership_message', null, ['class' => 'form-control '.($errors->has('sales_partnership_message') ? 'error is-invalid' : ''), 'placeholder'=>__('website.through_whom_placeholder'), 'rows'=>4]) !!} @if ($errors->has('sales_partnership_message')) {{ $errors->first('sales_partnership_message') }} @endif @endif {!! Form::checkbox('accepted_data_protection', 1, false, ['id'=>'accepted_data_protection', 'class' => 'form-control '.($errors->has('accepted_data_protection') ? 'error' : ''), '']) !!} {!! trans('register.reg_checked', ['link' => url('datenschutz')]) !!} .* @if ($errors->has('accepted_data_protection')) {{ $errors->first('accepted_data_protection') }} @endif @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif {{ __('website.send_message') }} {!! Form::close() !!} @include('web.templates._side_contact') @endsection @section('scripts') @if(!$user_shop || $user_shop->id === 22) @endif @endsection
{{ __('website.contact_subl') }}
{{ __('website.through_whom_label') }}