F
Filament3mo ago
rabol

How can I always use the App login page and never the Filament login page

Hi Is there a way to make sure that the 'normal' login page is always used instead of the Filament login page ? I have tried to add
->loginRouteSlug('login')
->loginRouteSlug('login')
in the AdminPanelProvider but when trying to access /admin it redirect to admin/login and show the Filament login page
2 Replies
awcodes
awcodes3mo ago
remove ->login() from the admin panel provider
rabol
rabol3mo ago
Thanks