@extends('web.layouts.layout') @section('content') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(['action' => route('web_promotion_store', $promotion_user->id), 'class' => 'form-horizontal form-prevent-multiple-submits', 'id' => 'shop-form-validations']) !!}
@if($promotion_user->user->hasProfileImage()) @endif

Super, geschafft!

Ich danke Dir, dass Du unseren Service nutzt, um die Produkte von GRÜNE SEELE zu testen. Deine Produkte werden in Kürze versendet, eine Bestellbestätigungsmail ist bereits zu Dir unterwegs.

Deine Bestellnummer ist: {{ $order_reference }}


@if($pay_trans && $pay_trans->shopping_payment) @if($pay_trans->shopping_payment->clearingtype === "vor")

Bezahlung per Vorkasse:

Bitte überweise {{ number_format(($pay_trans->shopping_payment->amount/100), 2, ",", ".") }} EUR auf die folgende Kontoverbindung, um den Kauf abzuschließen.
{{__('email.checkout_mail_bank_holder')}} {!! \App\Models\Setting::getContentBySlug('prepayment-account-owner') !!}
{{__('email.checkout_mail_bank_iban')}} {!! \App\Models\Setting::getContentBySlug('prepayment-iban') !!}
{{__('email.checkout_mail_bank_bic')}} {!! \App\Models\Setting::getContentBySlug('prepayment-bic') !!}
{{__('email.checkout_mail_bank_name')}} {!! \App\Models\Setting::getContentBySlug('prepayment-bank') !!}
Gesamtbetrag: {{ number_format( ($pay_trans->shopping_payment->amount/100), 2, ",", ".") }} EUR
Verwendungszweck: {{ $pay_trans->transmitted_data['reference'] }}


@endif @if($pay_trans->shopping_payment->clearingtype === "cc")

Bezahlung per Kreditkarte:

Deine Zahlung wurde genehmigt, eine Bestätigung der Zahlung wird automatisch erstellt.


@endif @if($pay_trans->shopping_payment->clearingtype === "elv")

Bezahlung per SEPA:

Deine Zahlung wird bearbeitet, eine Bestätigung zur Zahlungsabwicklung wird automatisch erstellt.


@endif @if($pay_trans->shopping_payment->clearingtype === "fnc")

Bezahlung per Rechnung:

Deine Bestellung wird bearbeitet, eine Bestätigung zur Bestellungsabwicklung wird automatisch erstellt.

@endif @if(isset($pay_trans->shopping_payment->shopping_order->shipping_option)) @if($pay_trans->shopping_payment->shopping_order->shipping_option === 'dhl_shipping')

Versand mit DHL (1-3 Werktage).

@endif @if($pay_trans->shopping_payment->shopping_order->shipping_option === 'pick_up')

Ich hole die Ware bei {{ $promotion_user->user->getFullName() }} persönlich ab.

Kontakt & Abholadresse

{!! nl2br($promotion_user->user_address) !!}

@endif
@endif @endif

Dann freuen wir uns auf ein Feedback von Dir und wünschen Dir bis dahin alles Gute!

Liebe Grüße
{{ $promotion_user->user->getFullName() }}
Vertriebspartner:in der GRÜNE SEELE Naturkosmetik


@include('web.promotion._show_around')
{!! Form::close() !!} @endsection