From 0d856db10ab0a5c9cd266c1b3a6ce542159e7778 Mon Sep 17 00:00:00 2001 From: Jared Lewis <17649602+jrd-lewis@users.noreply.github.com> Date: Thu, 13 Nov 2025 01:59:41 -0500 Subject: [PATCH 1/3] Update Features.php --- src/Features.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/Features.php b/src/Features.php index 38ff61a5..3ecaa289 100644 --- a/src/Features.php +++ b/src/Features.php @@ -61,6 +61,16 @@ public static function hasSecurityFeatures() static::canManageTwoFactorAuthentication(); } + /** + * Determine if the application can update a user's password. + * + * @return bool + */ + public static function canUpdatePassword() + { + return static::enabled(static::updatePasswords()); + } + /** * Determine if the application can manage two factor authentication. * From 5d7149df97cc4e1c0b2441901a6343c993126403 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 14 Nov 2025 09:03:09 -0600 Subject: [PATCH 2/3] Update Features.php --- src/Features.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Features.php b/src/Features.php index 3ecaa289..4db84a43 100644 --- a/src/Features.php +++ b/src/Features.php @@ -62,11 +62,11 @@ public static function hasSecurityFeatures() } /** - * Determine if the application can update a user's password. + * Determine if the application can user passwords. * * @return bool */ - public static function canUpdatePassword() + public static function canUpdatePasswords() { return static::enabled(static::updatePasswords()); } From 5f1c790af5d85f9136f3445651d7dc6eb7b5961b Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 14 Nov 2025 09:03:24 -0600 Subject: [PATCH 3/3] Update Features.php --- src/Features.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Features.php b/src/Features.php index 4db84a43..dceaefe2 100644 --- a/src/Features.php +++ b/src/Features.php @@ -62,7 +62,7 @@ public static function hasSecurityFeatures() } /** - * Determine if the application can user passwords. + * Determine if the application can update user passwords. * * @return bool */