@extends('layouts.admin.theme') @section("title", env("APP_NAME") . " :: Alterar Senha") @section('content')
@php $headLine = " Alterar Senha"; @endphp @include('components.buttons._headLineButtonsBackAdd', [ 'headLine' => __($headLine), "permission" => "GUEST", ])
@csrf @method('post') @include("errors.messageFlash") @include('components.modal._modelProfile')
@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, ])
@include('components.buttons._backAndSend', [ 'textSend' => 'Atualizar', ])
@endsection