Login 2FA

Guys fast doubt, there's any way to use the Jetstream Authentication 2FA with Filament to login?

I did something clean like:

In my AdminPanelProvider I removed the
use Filament\Http\Middleware\Authenticate;
and added
use App\Http\Middleware\Authenticate;


So in my routes/web.php I added:
Route::get('admin/login', function () {
    return redirect()->route('login');
})->name('filament.admin.auth.login');


Obs: I know there's a composer package that filament supports, but I want to make with own Jetstream.
Was this page helpful?