Auth: convert auth views and verification email to Nova layout

This commit is contained in:
2026-02-21 07:37:08 +01:00
parent 93b009d42a
commit 795c7a835f
117 changed files with 5385 additions and 1291 deletions

View File

@@ -21,8 +21,13 @@ class User extends Authenticatable
* @var list<string>
*/
protected $fillable = [
'username',
'username_changed_at',
'onboarding_step',
'name',
'email',
'is_active',
'needs_password_reset',
'password',
'role',
];
@@ -46,6 +51,7 @@ class User extends Authenticatable
{
return [
'email_verified_at' => 'datetime',
'username_changed_at' => 'datetime',
'deleted_at' => 'datetime',
'password' => 'hashed',
];