uzzairwebstudio / password-strength
password strength package
Package info
github.com/uzzairwebstudio/password-strength-indicator
Language:HTML
pkg:composer/uzzairwebstudio/password-strength
dev-master
2019-09-30 03:01 UTC
Requires
- php: ^7.2
- laravel/framework: ~5.8.0|~5.9.0|^6.0
This package is auto-updated.
Last update: 2026-03-01 00:13:29 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 uzzairwebstudio/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.