Add PasswordConstraint
Closed this issue · 0 comments
core23 commented
Feature Request
Add validators for simple password constraints, e.g.
/**
* @PasswordAssert\Charset(
* minLower = 1,
* minUpper = 1,
* minNumeric = 1,
* minSpecial = 1,
* )
*/
protected $plainPassword;