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
but no luck..
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..