From c7af70af64504c65964eff936e0be956c9c19686 Mon Sep 17 00:00:00 2001 From: Luis Antonio Parrado Date: Wed, 23 Sep 2020 21:46:28 -0500 Subject: [PATCH] [1.x] Update authentication.md with requireSpecialCharacter() password rule --- 1.x/features/authentication.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/1.x/features/authentication.md b/1.x/features/authentication.md index ae0ba3b..ce8fcc4 100644 --- a/1.x/features/authentication.md +++ b/1.x/features/authentication.md @@ -59,6 +59,9 @@ As you may have noticed, the `App\Actions\Fortify\PasswordValidationRules` trait // Require at least one numeric character... (new Password)->requireNumeric() + +// Require at least one special character... +(new Password)->requireSpecialCharacter() ``` ## Customizing The Authentication Process