Replacing Login Route with Jetstream
Has anyone had any luck with overriding the /admin/login route with just the /login route from Jetstream?
There's no class I could find that I could change the ->login() to in adminPanelProvider, I tried setting the login class in config/filament.php to
'auth' => [
'pages' => [
'login' => [\Laravel\Fortify\Http\Controllers\AuthenticatedSessionController::class, 'create'],
],
],
but no luck..2 Replies
Solution
You can just ommit the
login()
on our admin panel provider.I tried that yesterday, didn't work.. have been developing in docker and octane, for whatever reason I had my app\providers folder excluded from the mount and had to rebuild.
Thank you!