@extends('layouts.app') @section('titulo') SGPT - {{ Auth::user()->Unidade->getNome() }} - Trocar Senha @endsection @section('css') @endsection @section('scripts') @endsection @section('pagina')



@include('partials._modal_form', [ 'largura'=>700, 'titulo'=> 'Trocar Senha', 'rota' => 'adm.trocasenha.salvar', 'icone' => 'fa-unlock', 'campos'=> [ [ 'id' =>'hdUsuario', 'nome'=>'hdusuario', 'tipo'=>'hidden' ], [ 'tipo'=>'array', 'campos'=> [ [ 'largura'=>'10', 'id' =>'txtNome', 'label'=>'Usuário', 'nome'=>'nome', 'tamanho'=>'50', 'tipo'=>'txt', 'required'=> true, 'autofocus'=> true, 'disabled'=>true ], ] ], [ 'tipo'=>'array', 'campos'=> [ [ 'largura'=>'5', 'id' =>'txtSenha', 'label'=>'Nova Senha', 'nome'=>'senha', 'tamanho'=>'30', 'tipo'=>'password', 'required'=> true, 'disabled'=>false ], [ 'largura'=>'5', 'id' =>'txtConfirmSenha', 'label'=>'Confirmar Senha', 'nome'=>'confirma_senha', 'tamanho'=>'30', 'tipo'=>'password', 'required'=> true, 'disabled'=>false ] ] ] ] ]) @endsection