Jun 11, 2025
0
Level 6
How make the password copyable in form
I have integrate with this package https://github.com/rawilk/filament-password-input
and tried this
use Rawilk\FilamentPasswordInput\Password;
Password::make('password')
->copyable()
->copyMessage('Password copied!')
->copyMessageDuration(2000)
->default(fn () => PasswordGenerator::generate(12))
->revealable()
->required(),
but that is not working
Please or to participate in this conversation.