Skip to content

Commit

Permalink
go
Browse files Browse the repository at this point in the history
  • Loading branch information
HamaDevek authored Nov 18, 2024
1 parent 62dc58d commit a6b9004
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ public function destroy(Request $request): RedirectResponse

$request->session()->regenerateToken();

return Redirect::route('login');
return Redirect::route('dashboard.login');
}
}
2 changes: 1 addition & 1 deletion app/Http/Controllers/Auth/NewPasswordController.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function ($user) use ($request) {
// the application's home authenticated view. If there is an error we can
// redirect them back to where they came from with their error message.
if ($status == Password::PASSWORD_RESET) {
return redirect()->route('login')->with('status', __($status));
return redirect()->route('dashboard.login')->with('status', __($status));
}

throw ValidationException::withMessages([
Expand Down

0 comments on commit a6b9004

Please sign in to comment.