@extends($user_shop ?'web.user.layouts.layout' : 'web.layouts.layout') @section('content') {{-- @if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif --}} {{-- --}} @if ($errors->any()) Bitte überprüfen Sie das Formular und vervollständigen alle Angaben. @endif {!! Form::open(['url' => route('checkout.checkout_card_final'), 'class' => 'row clearfix', 'id'=>'']) !!} Rechnung & Versand Firmenname (optional) {!! Form::text('billing[company]', null, ['class' => 'form-control', 'id'=>'billing_company']) !!} Vorname* {!! Form::text('billing[firstname]', null, ['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]', null, ['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]', null, ['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]', null, ['class' => 'form-control '.($errors->has('billing.address_2') ? 'error' : ''), 'id'=>'billing_address_2']) !!} @if ($errors->has('billing.address_]')) {{ $errors->first('billing.address_2') }} @endif PLZ * {!! Form::text('billing[zipcode]', null, ['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]', null, ['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]', null, ['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]', null, ['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, false, ['id'=>'accepted_data_checkbox', 'class' => 'form-control '.($errors->has('accepted_data_checkbox') ? 'error' : '')]) !!} Mit Klick auf "Jetzt kaufen" akzeptiere ich die Allgemeinen Geschäftsbedingungen, die Widerrufsbestimmungen und die Datenschutzbelehrung, damit für die Bestellung meine Daten verarbeitet werden können. @if ($errors->has('accepted_data_checkbox')) {{ $errors->first('accepted_data_checkbox') }} @endif {!! Form::checkbox('shipping[same_as_billing]', 1, true, ['id'=>'shipswitch', 'class' => '']) !!} Versand an die gleiche Adresse Versand Adresse Firmenname (optional) {!! Form::text('shipping[company]', null, ['class' => 'form-control', 'id'=>'billing_company']) !!} Vorname* {!! Form::text('shipping[firstname]', null, ['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]', null, ['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]', null, ['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]', null, ['class' => 'form-control '.($errors->has('shipping.address_2') ? 'error' : ''), 'id'=>'shipping_address_2']) !!} @if ($errors->has('shipping.address_]')) {{ $errors->first('shipping.address_2') }} @endif PLZ * {!! Form::text('shipping[zipcode]', null, ['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]', null, ['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]', null, ['class' => 'form-control '.($errors->has('shipping.phone') ? 'error' : ''), 'id'=>'shipping_phone']) !!} @if ($errors->has('shipping.phone')) {{ $errors->first('shipping.phone') }} @endif zurück zum Warenkorb Zahlungsart Paypal Sofortüberweisung Kredit Karte Lastschrift SEPA Vorauskasse {{ 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. {{-- Create an account for later use Password * Confirm Password * NOTE: Email address will be used to login --}} {!! 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.