A password
input Field.
$form->password('password')
->title('Password');
Update or create form requires a password confirmation.
$form->password('password')
->title('Password')
->confirm();
Password fields can be used to update and confirm user passwords using the
following rules
.
$modal->password('password')
->title('New Password')
->rules('required', 'min:5')
->minScore(0);
$modal->password('password_confirmation')
->rules('required', 'same:password')
->dontStore()
->title('New Password')
->noScore();
Method | Description |
---|---|
$field->title('Password') |
The title description for this field. |
$field->placeholder('Password') |
The placeholder for this field. |
$field->hint('Choose a Password.') |
A short hint that should describe how to use the field.` |
$field->info('...') |
Questionmark with tooltip. (Can contain longer field descriptions) |
$field->width(1/2) |
Width of the field. |
$field->confirm() |
Requires the user to type in the current passwort to confirm update or create. |
$field->rulesOnly() |
The password wont be stored, only validation rules are used. |
$field->rules('min:5') |
Rules that should be applied when updating and creating. |
$field->creationRules('min:5') |
Rules that should be applied when creating. |
$field->updateRules('min:5') |
Rules that should be applied when updating. |