Skip to content
This repository has been archived by the owner on May 15, 2024. It is now read-only.

Latest commit

 

History

History
32 lines (21 loc) · 1.27 KB

README.md

File metadata and controls

32 lines (21 loc) · 1.27 KB

Laravel Password Validation Rules

Latest Version on Packagist MIT Licensed GitHub Workflow Status

This package provides additional validation rules to empower strong password usage in Laravel applications.

Installation

You can install the package via composer:

composer require parfaitementweb/password-validation

The package will automatically register itself.

Translations

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"

Rules

  • 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.