N00b here. I started using Filament to build out my dashboard which is working out great to far. But I noticed I've also got Jetstream and two login paths:
mydomain.com/login and
mydomain.com/admin/login
The first goes to Jetstream login page, the second to Filament login page. When logging in to either, I see scaffolding on the same models but with a different theme.
Apparently both Jetstream and Filament are able to render the scaffolding in their own theme?
Not a direct answer to the question, but if you land on this post like I did, trying to look for a solution to using the Jetstream login pages instead of the Filament login pages, my solution was to:
1 - Edit ./config/filament.php and change the Authenticate class to the Jetstream one.
use App\Http\Middleware\Authenticate;
2 - Edit ./config/filament.php and change the value for auth.pages.login to null.
The system would then redirect on logout to my Jetstream login page, and also if I entered a URL for a Filament page and was not logged in, it would also redirect to the Jetstream login page.
Actually, you could also set auth.pages.login to: [\Laravel\Fortify\Http\Controllers\AuthenticatedSessionController::class, 'create'] instead of null if you wish to have the login path working under [FILAMENT_PATH]/login.
I cannot make it work by setting config/filament.php, but adding to AdminPanelProvider work for me
return $panel->login ([\Laravel\Fortify\Http\Controllers\AuthenticatedSessionController::class, 'create'])