Skip to content

Commit

Permalink
fix test: test_password_at_least_one_uppercase_lowercase_letter
Browse files Browse the repository at this point in the history
  • Loading branch information
Railton98 committed Mar 18, 2024
1 parent dc998ca commit be1cbce
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::defaults()],
'password' => ['required', 'confirmed', Rules\Password::defaults()->letters()],
]);

$user = User::create([
Expand Down

0 comments on commit be1cbce

Please sign in to comment.