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

{{__('register.complete_registration')}}

{!! 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])]) !!}

{{ __('register.password_has_already_been_created') }}

  {!! 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)
E {{__('membership.payment_has_been_made') }} {{__('membership.status') }}: {{ trans('payment.status.'.$userHistoryWizardPayment->getStatusType())}}
@include('user.wizard._payment')
@else @include('user.wizard._payment') @endif
@endsection