i want to change routes login in filament

by default the login page locate in /admin/login, i think this doesnt make sanse for role user to login, so i decide to replace the login routes from /admin/login to /admin, but it doesnt work for me, can u help me? in admin panel i already add
return $panel
->default()
->id('admin')
->path('admin')
->login('/login')
->colors([
'primary' => Color::Blue,
])
return $panel
->default()
->id('admin')
->path('admin')
->login('/login')
->colors([
'primary' => Color::Blue,
])
No description
5 Replies
Kaesa Lyrih
Kaesa Lyrih2w ago
Try it
return $panel
->default()
->id('admin')
->path('/')
->login()
->colors([
'primary' => Color::Blue,
]);
return $panel
->default()
->id('admin')
->path('/')
->login()
->colors([
'primary' => Color::Blue,
]);
Arlyzatun
ArlyzatunOP2w ago
new error occur
No description
Arlyzatun
ArlyzatunOP2w ago
eh it is works after i delete route for loigin in web.php @Kaesa Lyrih hmm, but i also want /admin as base path of admin dashboard @Kaesa Lyrih , any suggest?
Kaesa Lyrih
Kaesa Lyrih2w ago
U can make new panel for User. AdminPanelProvider using path (admin) && UserPanelProvider using path(/)
Arlyzatun
ArlyzatunOP2w ago
actually for user, we use page view in laravel instead of using PanelProvider can i ask something differnt? i have some page /building/id /my/transaction /my/booking btw, for now, i will stay on /admin/login as login page route i want to make a middleware for check does user have change their default password? if not they will redirect ot reset-password page, if user already change their default password, they can acccess di page
class CheckFirstLogin
{
public function handle(Request $request, Closure $next)
{
$user = Auth::user();

if ($user && $user->is_first == 1) {
Password::sendResetLink(['email' => $user->email]);
return redirect('/reset-password-send')->with('status', 'Silakan cek email Anda untuk reset password.');
}

return $next($request);
}
}
class CheckFirstLogin
{
public function handle(Request $request, Closure $next)
{
$user = Auth::user();

if ($user && $user->is_first == 1) {
Password::sendResetLink(['email' => $user->email]);
return redirect('/reset-password-send')->with('status', 'Silakan cek email Anda untuk reset password.');
}

return $next($request);
}
}
how do i implement this middleware in filament, i also want to check if user already login or not, if they didnt login yet, the will redirected to login page

Did you find this page helpful?