@include('components.inputs._inputType',[
"for" => null,
"label" => "Senha atual",
"name" => "current_password",
"id" => null,
"required" => true,
"type" => 'password',
"old" => old('current_password'),
"oninput" => null,
"readonly" => false,
"small" => null,
"toggleButton" => true,
"toggleButtonId" => 'togglePasswordCurrent',
"toggleButtonFontawesome" => '',
"inputGroup" => true,
])
@include('components.inputs._inputType',[
"for" => null,
"label" => "Nova senha",
"name" => "password",
"id" => null,
"required" => true,
"type" => 'password',
"old" => old('password'),
"oninput" => null,
"readonly" => false,
"small" => null,
"toggleButton" => true,
"toggleButtonId" => 'togglePassword',
"toggleButtonFontawesome" => '',
"inputGroup" => true,
])
@include('components.inputs._inputType',[
"for" => null,
"label" => "Repetir senha",
"name" => "password_repeat",
"id" => null,
"required" => true,
"type" => 'password',
"old" => old('password_repeat'),
"oninput" => null,
"readonly" => false,
"small" => null,
"toggleButton" => true,
"toggleButtonId" => 'togglePasswordRepeat',
"toggleButtonFontawesome" => '',
"inputGroup" => true,
])