New custom login page not working according to documentation. Please help

Sure I am forgetting something obvious but cannot see what.

I want to create a completely new login page form, so I have done this:

1.- Create a new page and blade view with ==> php artisan make:filament-page Auth/Login
    • Changed the Login class like this:
      ```
      use Filament\Pages\Auth\Login as FilamentLogin;
class Login extends FilamentLogin
{
protected static ?string $navigationIcon = 'heroicon-o-document-text';

protected static string $view = 'filament.pages.auth.login';
}
3. - In AdminPanelProvider changed the ->login() for this => ->login(Login::class) and imported the class with:

use Filament\Pages\Auth\Login;
```
But I can see no changes at all. I have added some text for testing in my view located at: resources\views\filament\pages\auth\login.blade.php

Any ideas of what I am doing wrong??
I am using Filament v3.2.41

Thank you very much.
Solution
Oh. Your namespace is wrong in your panel provider.
Use App\Filament\Pages\Auth\Login;
Was this page helpful?