Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

anonymouse703's avatar

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

0 likes
0 replies

Please or to participate in this conversation.