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 d2b2331 commit 53fd544Copy full SHA for 53fd544
app/Http/Controllers/Auth/ConfirmablePasswordController.php
@@ -25,12 +25,12 @@ public function show(): Response
25
*/
26
public function store(Request $request): RedirectResponse
27
{
28
- $successfulValidated = Auth::guard('web')->validate([
+ $successfullyValidated = Auth::guard('web')->validate([
29
'email' => $request->user()?->email,
30
'password' => $request->password,
31
]);
32
33
- if (!$successfulValidated) {
+ if (!$successfullyValidated) {
34
throw ValidationException::withMessages([
35
'password' => __('auth.password'),
36
0 commit comments