papalardo / filament-password-input
Password input for filament built with laravel
Installs: 202
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Language:Blade
Requires
- php: ^8.0
- filament/filament: ^2.16
- spatie/laravel-package-tools: ^1.10
This package is auto-updated.
Last update: 2025-03-25 22:47:54 UTC
README
Plugin built for Filament package with Laravel framework. This input shows/hides the password when clicking on the eye
Installation
Install via composer:
composer require papalardo/filament-password-input
Result
Usage
use Illuminate\Validation\Rules\Password as PasswordRule; use Papalardo\FilamentPasswordInput\PasswordInput; class UserPasswordForm { public static function inputs(): array { return [ PasswordInput::make('password') ->label('Senha') ->required() ->rules(['confirmed', PasswordRule::min(8)]), PasswordInput::make('password_confirmation') ->label('Confirmação da senha') ->required(), ]; } }