Prevent users from reusing recently used passwords
"One way to make systems more secure is to allow users to use stronger passwords. This means that among other aspects, the user must not use a password that was used in the past.
This package provides a solution that can be used with Laravel based PHP applications to keep track of hashes of the user passwords that were used over time. So when they change their password, the system can check if the password was used before.
At the same time, this package will not disclose previous passwords as it only stores hashes of old passwords. It can observe events for creating or updating user model objects, and provides a class that can be used to validate a password form field value by comparing to the password history."
Edward Paul
@infinitypaul