This package provides additional validation rules to empower strong password usage in Laravel applications.
You can install the package via composer:
composer require parfaitementweb/password-validation
The package will automatically register itself.
If you wish to edit the package translations, you can run the following command to publish them into your resources/lang
folder
php artisan vendor:publish --provider="Parfaitementweb\PasswordValidation\PasswordValidationServiceProvider"
minoneletter
- The field must include at least one letter.upperandlower
- The field must include both upper and lower case letters.minonenumber
- The field must include at least one number.minonesymbol
- The field must include at least one symbol.