@csrf @method('PATCH')

Image

Ajouter l'image de l'article

Bio

@if ($errors->get('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->get('email'))
{{ $errors->first('email') }}
@endif @if ($user instanceof \Illuminate\Contracts\Auth\MustVerifyEmail && ! $user->hasVerifiedEmail())

{{ __('Your email address is unverified.') }}

@if (session('status') === 'verification-link-sent')

{{ __('A new verification link has been sent to your email address.') }}

@endif
@endif
C'est à vous de jouer.
Retour