{{--

{{ __('Profile') }}

@include('profile.partials.update-profile-information-form')
@include('profile.partials.update-password-form')
@include('profile.partials.delete-user-form')
--}} @extends('layouts.admin') @section('title', 'Mon profil') @section('breadcrumb') @endsection @section('content')

Mon profil

@if (session('status') === 'profile-updated' || session('status') === 'password-updated') @endif

Informations de Profil

Mettez à jour les informations de votre profil et votre adresse e-mail.

@csrf @method('patch')
Veuillez entrer votre nom.
Veuillez entrer une adresse email valide.

Mise à jour du mot de passe

Assurez-vous que votre compte utilise un mot de passe long et aléatoire pour rester sécurisé.

@csrf @method('put')
@if($errors->updatePassword->get('current_password'))
{{ $errors->updatePassword->get('current_password')[0] }}
@endif
@if($errors->updatePassword->get('password'))
{{ $errors->updatePassword->get('password')[0] }}
@endif
@if($errors->updatePassword->get('password_confirmation'))
{{ $errors->updatePassword->get('password_confirmation')[0] }}
@endif
@endsection