@extends('layouts.layout-2') @section('content') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ __('Registrierung abschließen') }}

{!! Form::open(['url' => route('wizard_store', [0]), 'class' => 'form-horizontal', 'id'=>'lead-form-validation-confirm']) !!} @include('user.data_confirm')
 
{!! Form::close() !!}
@if(!$user->isPasswort()) {!! Form::open(['url' => route('wizard_store', [1])]) !!} @include('user.update_password_first_form')
 
{!! Form::close() !!} @else {!! Form::open(['url' => route('wizard_store', [1])]) !!}

Passwort wurde bereits erstellt.

  {!! Form::close() !!} @endif
{!! Form::open(['url' => route('wizard_store', [2]), 'class' => 'form-horizontal', 'id'=>'lead-form-validation']) !!} @include('user.user_form')
 
{!! Form::close() !!}
{!! Form::open(['url' => route('wizard_store', [3]), 'class' => 'form-horizontal']) !!}
@php($counter = 1) @foreach($products as $product)
@php($counter++) @endforeach
@if(count($product->images)) @endif
{{$product->name}}
{!! $product->getLang('copy') !!}
{{$product->getFormattedPrice()}} EUR / p.a.
 

Sie werden auf unseren checkout Server weitergeletet, die Verbindung ist mit SSL verschlüsselt.
{!! Form::close() !!}

Vielen Dank,

Deine Registrierung ist abgeschlossen!

Sobald die Zahlung bei uns eingegangen ist, erhälst du automatisch eine E-Mail und dein Account wird freigeschaltet.

@endsection