Remove password mutator that was causing double-hashing

This commit is contained in:
TheMaddax 2025-12-17 21:38:46 -07:00
parent 539df42dc5
commit 1b63d00560

View file

@ -16,13 +16,6 @@ class AdminUser extends Model
'password',
];
/**
* Automatically hash password when setting.
*/
public function setPasswordAttribute($value)
{
$this->attributes['password'] = Hash::make($value);
}
/**
* Verify password.