From 1b63d0056080c48ddf3edca0ee00a4c18e857270 Mon Sep 17 00:00:00 2001 From: TheMaddax Date: Wed, 17 Dec 2025 21:38:46 -0700 Subject: [PATCH] Remove password mutator that was causing double-hashing --- app/Models/AdminUser.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/app/Models/AdminUser.php b/app/Models/AdminUser.php index d263f364..d47d2aaa 100644 --- a/app/Models/AdminUser.php +++ b/app/Models/AdminUser.php @@ -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.