@extends($user_shop ?'web.user.layouts.layout' : 'web.layouts.layout') @section('content') @if ($errors->any()) Bitte überprüfen Sie das Formular und vervollständigen alle Angaben. @endif @if (\Session::has('checkout-error')) {{ \Session::get('checkout-error') }} @endif @if (\Session::has('errormessage')) {{ \Session::get('customermessage') }} @endif {!! Form::open(['url' => route('checkout.checkout_card_final'), 'class' => 'row clearfix', 'id'=>'']) !!} Rechnung & Versand Firmenname (optional) {!! Form::text('billing_company', $shopping_user->billing_company, ['class' => 'form-control', 'id'=>'billing_company']) !!} Anrede * {!! HTMLHelper::getSalutation(($shopping_user->billing_salutation ? $shopping_user->billing_salutation : old('billing_salutation'))) !!} @if ($errors->has('billing_salutation')) {{ $errors->first('billing_salutation') }} @endif Vorname* {!! Form::text('billing_firstname', $shopping_user->billing_firstname, ['class' => 'form-control '.($errors->has('billing_firstname') ? 'error' : ''), 'id'=>'billing_firstname']) !!} @if ($errors->has('billing_firstname')) {{ $errors->first('billing_firstname') }} @endif Nachname* {!! Form::text('billing_lastname', $shopping_user->billing_lastname, ['class' => 'form-control '.($errors->has('billing_lastname') ? 'error' : ''), 'id'=>'billing_lastname']) !!} @if ($errors->has('billing_lastname')) {{ $errors->first('billing_lastname') }} @endif Straße Nr. * {!! Form::text('billing_address', $shopping_user->billing_address, ['class' => 'form-control '.($errors->has('billing_address') ? 'error' : ''), 'id'=>'billing_address']) !!} @if ($errors->has('billing_address')) {{ $errors->first('billing_address') }} @endif Wohnung / Gebäude (optional) {!! Form::text('billing_address_2', $shopping_user->billing_address_2, ['class' => 'form-control '.($errors->has('billing_address_2') ? 'error' : ''), 'id'=>'billing_address_2']) !!} @if ($errors->has('billing_address_2')) {{ $errors->first('billing_address_2') }} @endif PLZ * {!! Form::text('billing_zipcode', $shopping_user->billing_zipcode, ['class' => 'form-control '.($errors->has('billing_zipcode') ? 'error' : ''), 'id'=>'billing_zipcode']) !!} @if ($errors->has('billing_zipcode')) {{ $errors->first('billing_zipcode') }} @endif Stadt * {!! Form::text('billing_city', $shopping_user->billing_city, ['class' => 'form-control '.($errors->has('billing_city') ? 'error' : ''), 'id'=>'billing_city']) !!} @if ($errors->has('billing_city')) {{ $errors->first('billing_city') }} @endif Land * {!! HTMLHelper::getCountriesForShipping(Yard::instance('shopping')->getShippingCountryId()) !!} Telefon (optional) {!! Form::text('billing_phone', $shopping_user->billing_phone, ['class' => 'form-control '.($errors->has('billing_phone') ? 'error' : ''), 'id'=>'billing_phone']) !!} @if ($errors->has('billing_phone')) {{ $errors->first('billing_phone') }} @endif E-Mail * {!! Form::email('billing_email', $shopping_user->billing_email, ['class' => 'form-control '.($errors->has('billing_email') ? 'error' : ''), 'id'=>'billing_email']) !!} @if ($errors->has('billing_email')) {{ $errors->first('billing_email') }} @endif {!! Form::checkbox('accepted_data_checkbox', 1, $shopping_user->accepted_data_checkbox, ['id'=>'accepted_data_checkbox', 'class' => 'form-control '.($errors->has('accepted_data_checkbox') ? 'error' : '')]) !!} @if($shopping_user->auth_user_id) Mit Klick auf "Jetzt kaufen" akzeptiere ich die Allgemeinen Geschäftsbedingungen und die Datenschutzbelehrung, damit für die Bestellung meine Daten verarbeitet werden können. @else Mit Klick auf "Jetzt kaufen" akzeptiere ich die Allgemeinen Geschäftsbedingungen, die Widerrufsbelehrung und die Datenschutzerklärung, damit für die Bestellung meine Daten verarbeitet werden können. @endif @if ($errors->has('accepted_data_checkbox')) {{ $errors->first('accepted_data_checkbox') }} @endif {!! Form::checkbox('same_as_billing', 1, $shopping_user->same_as_billing, ['id'=>'shipswitch', 'class' => '']) !!} Versand an die gleiche Adresse Versand Adresse Firmenname (optional) {!! Form::text('shipping_company', $shopping_user->shipping_company, ['class' => 'form-control', 'id'=>'shipping_company']) !!} Anrede * {!! HTMLHelper::getSalutation(($shopping_user->shipping_salutation ? $shopping_user->shipping_salutation : old('shipping_salutation'))) !!} @if ($errors->has('shipping_salutation')) {{ $errors->first('shipping_salutation') }} @endif Vorname* {!! Form::text('shipping_firstname', $shopping_user->shipping_firstname, ['class' => 'form-control '.($errors->has('shipping_firstname') ? 'error' : ''), 'id'=>'shipping_firstname']) !!} @if ($errors->has('shipping_firstname')) {{ $errors->first('shipping_firstname') }} @endif Nachname* {!! Form::text('shipping_lastname', $shopping_user->shipping_lastname, ['class' => 'form-control '.($errors->has('shipping_lastname') ? 'error' : ''), 'id'=>'shipping_lastname']) !!} @if ($errors->has('shipping_lastname')) {{ $errors->first('shipping_lastname') }} @endif Straße Nr. * {!! Form::text('shipping_address', $shopping_user->shipping_address, ['class' => 'form-control '.($errors->has('shipping_address') ? 'error' : ''), 'id'=>'shipping_address']) !!} @if ($errors->has('shipping_address')) {{ $errors->first('shipping_address') }} @endif Wohnung / Gebäude (optional) {!! Form::text('shipping_address_2', $shopping_user->shipping_address_2, ['class' => 'form-control '.($errors->has('shipping_address_2') ? 'error' : ''), 'id'=>'shipping_address_2']) !!} @if ($errors->has('shipping_address_2')) {{ $errors->first('shipping_address_2') }} @endif PLZ * {!! Form::text('shipping_zipcode', $shopping_user->shipping_zipcode, ['class' => 'form-control '.($errors->has('shipping_zipcode') ? 'error' : ''), 'id'=>'shipping_zipcode']) !!} @if ($errors->has('shipping_zipcode')) {{ $errors->first('shipping_zipcode') }} @endif Stadt * {!! Form::text('shipping_city', $shopping_user->shipping_city, ['class' => 'form-control '.($errors->has('shipping_city') ? 'error' : ''), 'id'=>'shipping_city']) !!} @if ($errors->has('shipping_city')) {{ $errors->first('shipping_city') }} @endif Land * {!! HTMLHelper::getCountriesForShipping(Yard::instance('shopping')->getShippingCountryId()) !!} Telefon (optional) {!! Form::text('shipping_phone', $shopping_user->shipping_phone, ['class' => 'form-control '.($errors->has('shipping_phone') ? 'error' : ''), 'id'=>'shipping_phone']) !!} @if ($errors->has('shipping_phone')) {{ $errors->first('shipping_phone') }} @endif @if(isset($order_reference)) zurück zum Shop @else zurück zum Warenkorb @endif Zahlungsart {!! Form::radio('payment_method', 'wlt#PPE', (!old('payment_method') ? '1' : '')) !!} PayPal {{-- giropay - Online-Überweisung --}} {!! Form::radio('payment_method', 'sb#PNT', '') !!} Sofort -Überweisung {!! Form::radio('payment_method', 'vor', '') !!} Vorkasse Kreditkarte Kreditkarte * VISA Mastercard Inhaber* {!! Form::text('cc_cardholder_first', '', ['class' => 'form-control', 'id'=>'cc_cardholder_first', 'placeholder'=>'Vorname']) !!} {!! Form::text('cc_cardholder_last', '', ['class' => 'form-control', 'id'=>'cc_cardholder_last', 'placeholder'=>'Nachname']) !!} Kreditkartennummer* {!! Form::text('cc_cardpan', '', ['class' => 'form-control', 'id'=>'cc_cardpan', 'placeholder'=>'Kreditkartennummer']) !!} Gültis bis* @php( $months = range(1, 12)) @foreach($months as $month) @php( $month = sprintf('%02d', $month) ) {{$month}} @endforeach @php( $years = range(date("Y"), date('Y', strtotime('+6 years'))) ) @foreach($years as $year) {{$year}} @endforeach Prüfnr.* {!! Form::text('cc_cardcvc2', '', ['class' => 'form-control', 'id'=>'cc_cardcvc2', 'placeholder'=>'CVC*']) !!} {{ Yard::instance('shopping')->total() }} € Zwischensumme: {{ Yard::instance('shopping')->shipping() }} € Versandkosten: {{ Yard::instance('shopping')->getShippingCountryName() }} Versandland: {{ Yard::instance('shopping')->subtotalWithShipping() }} € Summe ohne MwSt: {{ Yard::instance('shopping')->taxWithShipping() }} € zzgl. {{ Yard::getTaxRate() }} % MwSt: {{ Yard::instance('shopping')->totalWithShipping() }} € Gesamtsumme: Jetzt kaufen Sind alle Ihre Angaben vollsätndig ausgefüllt, klicken Sie auf "Jetzt kaufen" und Sie werden zu unserem Zahlungsanbieter weitergeleitet, die Verbindung wird ist SSL verschlüsselt. {!! Form::close() !!} @endsection
Sind alle Ihre Angaben vollsätndig ausgefüllt, klicken Sie auf "Jetzt kaufen" und Sie werden zu unserem Zahlungsanbieter weitergeleitet, die Verbindung wird ist SSL verschlüsselt.