@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 @if (\Session::has('checkout-error'))
{{ \Session::get('checkout-error') }}
@endif
{!! Form::open(['url' => route('checkout.checkout_card_final'), 'class' => 'row clearfix', 'id'=>'']) !!}

Rechnung & Versand


{!! Form::text('billing[company]', null, ['class' => 'form-control', 'id'=>'billing_company']) !!}
{!! Form::text('billing[firstname]', null, ['class' => 'form-control '.($errors->has('billing.firstname') ? 'error' : ''), 'id'=>'billing_firstname']) !!} @if ($errors->has('billing.firstname')) @endif
{!! Form::text('billing[lastname]', null, ['class' => 'form-control '.($errors->has('billing.lastname') ? 'error' : ''), 'id'=>'billing_lastname']) !!} @if ($errors->has('billing.lastname')) @endif
{!! Form::text('billing[address]', null, ['class' => 'form-control '.($errors->has('billing.address') ? 'error' : ''), 'id'=>'billing_address']) !!} @if ($errors->has('billing.address')) @endif
{!! Form::text('billing[address_2]', null, ['class' => 'form-control '.($errors->has('billing.address_2') ? 'error' : ''), 'id'=>'billing_address_2']) !!} @if ($errors->has('billing.address_]')) @endif
{!! Form::text('billing[zipcode]', null, ['class' => 'form-control '.($errors->has('billing.zipcode') ? 'error' : ''), 'id'=>'billing_zipcode']) !!} @if ($errors->has('billing.zipcode')) @endif
{!! Form::text('billing[city]', null, ['class' => 'form-control '.($errors->has('billing.city') ? 'error' : ''), 'id'=>'billing_city']) !!} @if ($errors->has('billing.city')) @endif
{!! Form::text('billing[phone]', null, ['class' => 'form-control '.($errors->has('billing.phone') ? 'error' : ''), 'id'=>'billing_phone']) !!} @if ($errors->has('billing.phone')) @endif
{!! Form::email('billing[email]', null, ['class' => 'form-control '.($errors->has('billing.email') ? 'error' : ''), 'id'=>'billing_email']) !!} @if ($errors->has('billing.email')) @endif

@if ($errors->has('accepted_data_checkbox')) @endif

Versand Adresse


{!! Form::text('shipping[company]', null, ['class' => 'form-control', 'id'=>'billing_company']) !!}
{!! Form::text('shipping[firstname]', null, ['class' => 'form-control '.($errors->has('shipping.firstname') ? 'error' : ''), 'id'=>'shipping_firstname']) !!} @if ($errors->has('shipping.firstname')) @endif
{!! Form::text('shipping[lastname]', null, ['class' => 'form-control '.($errors->has('shipping.lastname') ? 'error' : ''), 'id'=>'shipping_lastname']) !!} @if ($errors->has('shipping.lastname')) @endif
{!! Form::text('shipping[address]', null, ['class' => 'form-control '.($errors->has('shipping.address') ? 'error' : ''), 'id'=>'shipping_address']) !!} @if ($errors->has('shipping.address')) @endif
{!! Form::text('shipping[address_2]', null, ['class' => 'form-control '.($errors->has('shipping.address_2') ? 'error' : ''), 'id'=>'shipping_address_2']) !!} @if ($errors->has('shipping.address_]')) @endif
{!! Form::text('shipping[zipcode]', null, ['class' => 'form-control '.($errors->has('shipping.zipcode') ? 'error' : ''), 'id'=>'shipping_zipcode']) !!} @if ($errors->has('shipping.zipcode')) @endif
{!! Form::text('shipping[city]', null, ['class' => 'form-control '.($errors->has('shipping.city') ? 'error' : ''), 'id'=>'shipping_city']) !!} @if ($errors->has('shipping.city')) @endif
{!! Form::text('shipping[phone]', null, ['class' => 'form-control '.($errors->has('shipping.phone') ? 'error' : ''), 'id'=>'shipping_phone']) !!} @if ($errors->has('shipping.phone')) @endif
zurück zum Warenkorb

Zahlungsart


{{ 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:

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.

{{--
NOTE: Email address will be used to login
--}}
{!! Form::close() !!}
@endsection