@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_create', [10]), 'class' => 'form-horizontal', 'id'=>'lead-form-validation-confirm']) !!} @include('user.data_confirm')
 
{!! Form::close() !!}
@if(!$user->isPasswort()) {!! Form::open(['url' => route('wizard_store_create', [11])]) !!} @include('user.update_password_first_form')
 
{!! Form::close() !!} @else {!! Form::open(['url' => route('wizard_store_create', [11])]) !!}

Passwort wurde bereits erstellt.

  {!! Form::close() !!} @endif
{!! Form::open(['url' => route('wizard_store_create', [12]), 'class' => 'form-horizontal', 'id'=>'lead-form-validation']) !!} @include('user.user_form')
 
{!! Form::close() !!}
@if($userHistoryWizardPayment && $userHistoryWizardPayment->status > 2)
Eine Zahlung wurde ausgeführt. Status: {{ trans('payment.status.'.$userHistoryWizardPayment->getStatusType())}}
@include('user.wizard._payment')
@else @include('user.wizard._payment') @endif
@endsection