Password complexity and X-previous passwords check
Hello guys.
I was looking through the documentation and any manuals I can find about the password complexity requirement and if there is some functionality about X-previous passwords?
For example, if a user request a password check and types a password of 4 characters, is it feasible easily to request/validate higher complexity and also check if the new password is one of the previous X passwords?
Hi there,
You can find the password validation logic for the registration form here:
Currently it is as follows:
'password' => 'required|string|min:6|confirmed'
For the password change functionality inside the user settings profile, the logic can be found here:
But you can adjust both if you need to.
Let me know if you have any questions!