uzzaircode / password-strength
password strength package for html
Installs: 54
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Language:HTML
This package is auto-updated.
Last update: 2025-06-15 23:36:51 UTC
README
Password Strength Indicator
This is the password stength indicator package written for Laravel. The indicator algorithm is taken from Dropbox Low-Budget Password Strength Estimation.
Installation
First and foremost,
composer require uzzaircode/password-strength
then include the blade file which contains assets link in your master template.
@include('password-strength::asset')
Make sure to add 'password' id to your password input and include the password strength meter view just below the password input.
<input type="password" name="password" id="password">
@include('password-strength::password-meter')
That's it.