diff --git a/routes/auth.php b/routes/auth.php index 09bb6a45..b53cf14f 100644 --- a/routes/auth.php +++ b/routes/auth.php @@ -10,7 +10,9 @@ })->middleware(['guest'])->name('login'); Route::get('authenticate', function (AuthKitAuthenticationRequest $request) { - return tap(to_route('dashboard'), fn () => $request->authenticate()); + return tap(to_route('dashboard'), fn () => $request->authenticate( + allowUpdate: true, + )); })->middleware(['guest']); Route::post('logout', function (AuthKitLogoutRequest $request) {