Can I customize the built in login route?

I’d like to still use filaments login form but I want to change the route from /login” to /signin” to be consistent in terminology with the form.

For example: https://example.com/signin’.

Is this possible?
Solution
this?
//routes/web.php
Route::get('admin/signin', \Filament\Pages\Auth\Login::class)->name('filament.admin.auth.login')
Was this page helpful?