Skip to content

Commit

Permalink
Update RegisteredUserController.php
Browse files Browse the repository at this point in the history
  • Loading branch information
OhmygoodR authored Nov 13, 2023
1 parent 60c3c4d commit ed852e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Auth/RegisteredUserController.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function store(Request $request)
$request->validate([
'name' => ['required', 'string', 'max:255'],
'email' => ['required', 'string', 'email', 'max:255', 'unique:users'],
'password' => ['required', 'confirmed', Rules\Password::letters()],
'password' => ['required', 'confirmed', Rules\Password::min(8)->letters()],
]);

$user = User::create([
Expand Down

0 comments on commit ed852e6

Please sign in to comment.