Fully customize login screen, possible?
Looking at the docs, I couldn't find a way to totally customize the login screen (e.g. add an additional field, reposition elements, add a picture).
Is it possible in a way that a future Livewire update doesn't overwrite?
2 Replies
See : https://filamentphp.com/docs/3.x/panels/users#customizing-the-authentication-features
This class extends the base profile page class from the Filament codebase. Other page classes you could extend include:
- Filament\Pages\Auth\Login
- Filament\Pages\Auth\Register
- Filament\Pages\Auth\EmailVerification\EmailVerificationPrompt
- Filament\Pages\Auth\PasswordReset\RequestPasswordReset
- Filament\Pages\Auth\PasswordReset\ResetPassword
And also look at this : https://filamentphp.com/docs/3.x/support/render-hooks#overview
Awesome