© 2026 Hedgehog Software, LLC
class AdminPanelProvider extends PanelProvider { public function boot() TextInput::configureUsing(function (TextInput $component) { $component->isPassword() && $component->revealable(config('panel.password.revealable')); }, isImportant: true); }
->revealable(config('panel.password.revealable'))
I tried using
dump($component->isPassword());
false
dump($component->getType());
text
password
email
alphanumeric