correction divers pour le login

This commit is contained in:
2026-03-30 21:47:40 +02:00
parent 50ec9ff2c6
commit 0da54295a7
2 changed files with 10 additions and 1 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ class LoginController extends Controller
$user = Utilisateur::create([
'Pseudo' => $request->Pseudo,
'Email' => $request->Email,
'MotDePasse' => $request->MotDePasse,
'MotDePasse' => Hash::make($request->MotDePasse),
'ID_Role' => $roleUtilisateur->ID_Role,
'Statut' => 'Actif',
]);