@extends('layouts.layout-2') @section('content') {{-- --}}

zurück {{ __('Checkout') }}

@if ($errors->any())
Bitte überprüfe 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('user_checkout_store', [$identifier]), 'class' => 'row clearfix', 'id'=>'checkout_card_final']) !!} {!! Form::hidden('selected_country', '') !!} {!! Form::hidden('is_for', $shopping_user->is_for) !!} {!! Form::hidden('is_from', $shopping_user->is_from) !!}

Rechnungsadresse

@if($is_from === 'shopping') {{--
{!! Form::text('billing_company', $shopping_user->billing_company, ['class' => 'form-control', 'id'=>'billing_company']) !!}
@if ($errors->has('billing_salutation')) @endif
{!! Form::text('billing_firstname', $shopping_user->billing_firstname, ['class' => 'form-control '.($errors->has('billing_firstname') ? 'error' : ''), 'id'=>'billing_firstname']) !!} @if ($errors->has('billing_firstname')) @endif
{!! Form::text('billing_lastname', $shopping_user->billing_lastname, ['class' => 'form-control '.($errors->has('billing_lastname') ? 'error' : ''), 'id'=>'billing_lastname']) !!} @if ($errors->has('billing_lastname')) @endif
{!! Form::text('billing_address', $shopping_user->billing_address, ['class' => 'form-control '.($errors->has('billing_address') ? 'error' : ''), 'id'=>'billing_address']) !!} @if ($errors->has('billing_address')) @endif
{!! 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')) @endif
{!! Form::text('billing_zipcode', $shopping_user->billing_zipcode, ['class' => 'form-control '.($errors->has('billing_zipcode') ? 'error' : ''), 'id'=>'billing_zipcode']) !!} @if ($errors->has('billing_zipcode')) @endif
{!! Form::text('billing_city', $shopping_user->billing_city, ['class' => 'form-control '.($errors->has('billing_city') ? 'error' : ''), 'id'=>'billing_city']) !!} @if ($errors->has('billing_city')) @endif
Bei der Änderung des Lieferlandes werden die Versandkosten neu berechnet.
{!! Form::text('billing_phone', $shopping_user->billing_phone, ['class' => 'form-control '.($errors->has('billing_phone') ? 'error' : ''), 'id'=>'billing_phone']) !!} @if ($errors->has('billing_phone')) @endif
{!! Form::email('billing_email', $shopping_user->billing_email, ['class' => 'form-control '.($errors->has('billing_email') ? 'error' : ''), 'id'=>'billing_email']) !!} @if ($errors->has('billing_email')) @endif
--}} @else
{!! Form::hidden('billing_company', $shopping_user->billing_company) !!} {!! Form::hidden('billing_salutation', $shopping_user->billing_salutation) !!} {!! Form::hidden('billing_firstname', $shopping_user->billing_firstname) !!} {!! Form::hidden('billing_lastname', $shopping_user->billing_lastname) !!} {!! Form::hidden('billing_address', $shopping_user->billing_address) !!} {!! Form::hidden('billing_address_2', $shopping_user->billing_address_2) !!} {!! Form::hidden('billing_zipcode', $shopping_user->billing_zipcode) !!} {!! Form::hidden('billing_city', $shopping_user->billing_city) !!} {!! Form::hidden('billing_phone', $shopping_user->billing_phone) !!} {!! Form::hidden('billing_email', $shopping_user->billing_email) !!} {!! Form::hidden('billing_state', $shopping_user->billing_state) !!} {!! Form::hidden('billing_country_id', \App\Services\Shop::getShippingCountryCountryId($shopping_user->billing_state)) !!}
@if($shopping_user->billing_company)
Firma
{{ $shopping_user->billing_company }}
@endif
Anrede
{{ \App\Services\HTMLHelper::getSalutationLang($shopping_user->billing_salutation) }}
Vorname
{{ $shopping_user->billing_firstname }}
Nachname
{{ $shopping_user->billing_lastname }}
Straße
{{ $shopping_user->billing_address }}
Zusatz
{{ $shopping_user->billing_address_2 }}
PLZ
{{ $shopping_user->billing_zipcode }}
Stadt
{{ $shopping_user->billing_city }}
E-Mail
{{ $shopping_user->billing_email }}
Telefon
{{ $shopping_user->billing_phone }}
Land
{{ $shopping_user->billing_country->getLocated() }}

Deine Rechnungsadresse kann nur im Salescenter geändert werden.


@endif

@if($shopping_user->is_from === 'user_order') @if($shopping_user->is_for === 'me') Meine Lieferadresse @else Lieferadresse des Kunden @endif @else Lieferadresse @endif

{{ Form::text('shipping_company', $shopping_user->shipping_company, array('placeholder'=>__('Company name'), 'class'=>'form-control')) }}
@if ($errors->has('shipping_salutation')) {{ $errors->first('shipping_salutation') }} @endif
{{ Form::text('shipping_firstname', $shopping_user->shipping_firstname, array('placeholder'=>__('First name'), 'class'=>'form-control')) }} @if ($errors->has('shipping_firstname')) {{ $errors->first('shipping_firstname') }} @endif
{{ Form::text('shipping_lastname', $shopping_user->shipping_lastname, array('placeholder'=>__('Last name'), 'class'=>'form-control')) }} @if ($errors->has('shipping_lastname')) {{ $errors->first('shipping_lastname') }} @endif
{{ Form::text('shipping_address', $shopping_user->shipping_address, array('placeholder'=>__('Street'), 'class'=>'form-control')) }} @if ($errors->has('shipping_address')) {{ $errors->first('shipping_address') }} @endif
{{ Form::text('shipping_address_2', $shopping_user->shipping_address_2, array('placeholder'=>__('Wohnung / Gebäude (optional)'), 'class'=>'form-control')) }} @if ($errors->has('shipping_address_2')) {{ $errors->first('shipping_address_2') }} @endif
{{ Form::text('shipping_zipcode', $shopping_user->shipping_zipcode, array('placeholder'=>__('Postcode'), 'class'=>'form-control')) }} @if ($errors->has('shipping_zipcode')) {{ $errors->first('shipping_zipcode') }} @endif
{{ Form::text('shipping_city', $shopping_user->shipping_city, array('placeholder'=>__('City'), 'class'=>'form-control')) }} @if ($errors->has('shipping_city')) {{ $errors->first('shipping_city') }} @endif
@if ($errors->has('shipping_country_id')) {{ $errors->first('shipping_country_id') }} @endif
{{ Form::text('shipping_phone', $shopping_user->shipping_phone, array('placeholder'=>__('Phone'), 'class'=>'form-control', 'id'=>'shipping_phone')) }}
{{--
@if($is_from === 'user_order' && $is_for === 'me') Das Lieferland kann nur bei der Bestellübersicht geändert werden. @else Bei der Änderung des Landes werden die Versandkosten neu berechnet. @endif
--}}
@if($shopping_mode === 'test') #### TEST MODE #### TEST MODE #### @endif

Zahlungsart

{{-- @if(($shopping_user->abo_options === 1) && (Util::getUserPaymentFor() >= 3)) @if(array_key_exists('SEPA', $payment_methods_active) && in_array($payment_methods_active['SEPA'], $payment_methods))
@else

Zahlungsmethode nicht freigeschaltet, bitte wende dich an {{ config('app.default_mail') }}

@endif @else --}}
@if(\App\Models\PaymentMethod::isShowPaymentMethod('PP', $user_payment_methods, Yard::instance('shopping')->totalWithShipping(2, '.', ''))) @endif @if(\App\Models\PaymentMethod::isShowPaymentMethod('SB', $user_payment_methods, Yard::instance('shopping')->totalWithShipping(2, '.', ''))) @endif @if(\App\Models\PaymentMethod::isShowPaymentMethod('CC', $user_payment_methods, Yard::instance('shopping')->totalWithShipping(2, '.', ''))) @endif @if(\App\Models\PaymentMethod::isShowPaymentMethod('SEPA', $user_payment_methods, Yard::instance('shopping')->totalWithShipping(2, '.', ''))) @endif @if(\App\Models\PaymentMethod::isShowPaymentMethod('VOR', $user_payment_methods, Yard::instance('shopping')->totalWithShipping(2, '.', ''))) @endif @if(\App\Models\PaymentMethod::isShowPaymentMethod('FNC', $user_payment_methods, Yard::instance('shopping')->totalWithShipping(2, '.', ''))) @endif
PayPal
PayPal
Sofort -Überweisung
Sofort
Kreditkarte
Mastercard + Visa
SEPA
SEPA Lastschrift
Vorkasse
Vorkasse
Rechnungskauf
Rechnungskauf
{{--

SEPA Lastschrift


{!! Form::text('elv_bankaccountholder', (isset($payment_data['bankaccountholder']) ? $payment_data['bankaccountholder'] : ''), ['class' => 'form-control', 'id'=>'elv_bankaccountholder', 'placeholder'=>'Vorname Nachname']) !!}
{!! Form::text('elv_iban', (isset($payment_data['iban']) ? $payment_data['iban'] : ''), ['class' => 'form-control', 'id'=>'elv_iban', 'placeholder'=>'Beisp.: DE02120300000000202051']) !!}
{!! Form::text('elv_bic', (isset($payment_data['bic']) ? $payment_data['bic'] : ''), ['class' => 'form-control', 'id'=>'elv_bic', 'placeholder'=>'Beisp.: PBNKDEFF']) !!}
@if($shopping_user->abo_options)

Automatische Verlängerung wurde ausgewählt. Dein SEPA-Mandart wird gespeichert und die jährliche Zahlung automatisch ausgeführt.

@endif
--}}

Kreditkarte


{!! 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']) !!}
{!! Form::text('cc_cardpan', '', ['class' => 'form-control', 'id'=>'cc_cardpan', 'placeholder'=>'Kreditkartennummer']) !!}
{!! Form::text('cc_cardcvc2', '', ['class' => 'form-control', 'id'=>'cc_cardcvc2', 'placeholder'=>'CVC*']) !!}

Warenkorb

@if($is_from === 'user_order')
{{ Yard::instance('shopping')->subtotal() }} € Zwischensumme:

{{ Yard::instance('shopping')->shippingNet() }} € Versandkosten:
@else
{{ Yard::instance('shopping')->total() }} € Zwischensumme:
@endif
{{ Yard::instance('shopping')->getShippingCountryName() }} Lieferland:

{{ Yard::instance('shopping')->subtotalWithShipping() }} € Summe ohne MwSt:
{{ Yard::instance('shopping')->taxWithShipping() }} € zzgl. {{-- Yard::getTaxRate() --}} MwSt:

@if(Yard::instance('shopping')->getPaymentCredit())
{{ Yard::instance('shopping')->totalWithShippingWithoutCredit() }} € Summe:
- {{ Yard::instance('shopping')->totalfromCredit() }} € aus Guthaben:
@endif
{{ Yard::instance('shopping')->totalWithShipping() }} € Gesamtsumme:


Sind alle Deine Angaben vollsätndig ausgefüllt, klicke auf "Jetzt kaufen" und Du wist zu unserem Zahlungsanbieter weitergeleitet, die Verbindung wird ist SSL verschlüsselt.

{!! Form::close() !!} @endsection @section('scripts') @endsection