Password
extends Component
in package
Password Laravel Blade Component
A password input component with an optional show/hide toggle feature. Features customizable labels and hints for enhanced user experience.
Features:
- Show/hide password functionality
- Customizable labels and hints
- Form validation integration
- Livewire real-time updates
- Bulma CSS framework integration
- Mobile-friendly responsive design
Tags
Table of Contents
- $hint : string|null
- $id : string
- $label : string|null
- $name : string
- $show : bool
- $value : string|null
- __construct() : mixed
- Create a new component instance
- render() : View|string
- Get the view / contents that represent the component.
Properties
$hint
public
string|null
$hint
= null
$id
public
string
$id
$label
public
string|null
$label
= null
$name
public
string
$name
$show
public
bool
$show
$value
public
string|null
$value
= null
Methods
__construct()
Create a new component instance
public
__construct(string $name[, string|null $value = null ][, string|null $id = null ][, mixed $label = null ][, bool $show = false ][, string|null $hint = null ]) : mixed
Parameters
- $name : string
- $value : string|null = null
- $id : string|null = null
- $label : mixed = null
- $show : bool = false
- $hint : string|null = null
Return values
mixed —render()
Get the view / contents that represent the component.
public
render() : View|string