We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent affd90e commit 03fb42dCopy full SHA for 03fb42d
backend/app/Http/Controllers/LoginController.php
@@ -291,7 +291,7 @@ public function validateProvider(string $provider)
291
public function forgotPassword(Request $request)
292
{
293
$val = $request->validate(['email' => 'required|email|max:255']);
294
- $email = [Str::lower($val['email'])];
+ $email = ['email' => Str::lower($val['email'])];
295
Password::sendResetLink($email);
296
# Is there a need to handle errors?
297
}
0 commit comments