@extends('layouts.app') @section('content') @if(isset($isSuccess) && $isSuccess === true)

Félicitations

Votre compte a bien été créé et doit étre validé.
@else

Créer un compte

@include('components.alert_success') @include('components.alert_error')
@csrf
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('firstname'))
{{ $errors->first('firstname') }}
@endif
@if ($errors->has('lastname'))
{{ $errors->first('lastname') }}
@endif
@if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
@if ($errors->has('postcode'))
{{ $errors->first('postcode') }}
@endif
@if ($errors->has('city'))
{{ $errors->first('city') }}
@endif
@if ($errors->has('company'))
{{ $errors->first('company') }}
@endif
{{ $errors->first('business_type_id') }}
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if(isset($currentPartner->recaptcha))
@endif
Déjà un compte ?
@endif @endsection @if($currentPartner->recaptcha) @push('scripts_before') @endpush @endif