Password Generator field instead Password field
- Download files in your project
- Add in function register() file app/Providers/AppServiceProvider.php line
Voyager::addFormField(\App\FormFields\PasswordFormField::class);like below:
// file app/Providers/AppServiceProvider.php
public function register()
{
/// other code
Voyager::addFormField(\App\FormFields\PasswordFormField::class);
/// other code
}- Go to
/admin/users/1/editand you will see new Password Generator field instead Password field:
Password Generation executing when you click "Key" button
The MIT License (MIT). Please see License File for more information.
