On this page
Caution
The documentation you are viewing is for an older version of this component.
Switch to the latest (v3) version.
Elements
Password
Laminas\Form\Element\Password
represents a password form input.
It can be used with the FormPassword view helper.
Basic Usage
This element automatically adds a type
attribute of value password
.
use Laminas\Form\Element;
use Laminas\Form\Form;
$password = new Element\Password('my-password');
$password->setLabel('Enter your password');
$form = new Form('my-form');
$form->add($password);