File: /var/www/html/hrms-production/storage/framework/views/fa8b92ace7685367c6c8a3c2112bbb4cc4a9ae8e.php
<?php $__env->startSection('content'); ?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-12">
<h2>User Profile</h2>
</div>
</div>
</div><!-- /.container-fluid -->
</section>
<!-- Main content -->
<section class="content">
<div class="row justify-content-center">
<div class="col-md-6">
<div class="card card-default">
<div class="card-body">
<form class="form-horizontal" id="addEmpQualificationForm" method="post" action="">
<input type="hidden" name="_token" id="token" value="<?php echo e(csrf_token()); ?>">
<input type="hidden" name="EmployeeCode" id="EmployeeCode" value="">
<div class="row">
<div class="col-md-12">
<div class="form-group row">
<label for="EmployeeCode"
class="col-sm-4 col-form-label text-right">First Name:</label>
<div class="col-sm-8">
<input type="text" class="form-control form-control-sm"
name="FirstName" id="FirstName" readonly="readonly" value="<?php echo e(Session::get('FirstName')); ?>">
</div>
</div>
<div class="form-group row">
<label for="EmployeeCode"
class="col-sm-4 col-form-label text-right">Middle Name:</label>
<div class="col-sm-8">
<input type="text" class="form-control form-control-sm"
name="MiddleName" id="MiddleName" readonly="readonly" value="<?php echo e(Session::get('MiddleName')); ?>">
</div>
</div>
<div class="form-group row">
<label for="EmployeeCode"
class="col-sm-4 col-form-label text-right">Last Name:</label>
<div class="col-sm-8">
<input type="text" class="form-control form-control-sm"
name="LastName" id="LastName" readonly="readonly" value="<?php echo e(Session::get('LastName')); ?>">
</div>
</div>
<div class="form-group row">
<label for="EmployeeCode"
class="col-sm-4 col-form-label text-right">Email:</label>
<div class="col-sm-8">
<input type="text" class="form-control form-control-sm"
name="Email" id="Email" readonly="readonly" value="<?php echo e(Session::get('UserEmail')); ?>">
</div>
</div>
<div class="form-group row">
<label for="EmployeeCode"
class="col-sm-4 col-form-label text-right">Office:</label>
<div class="col-sm-8">
<input type="text" class="form-control form-control-sm"
name="Office" id="Office" readonly="readonly" value="<?php echo e($admindata['ActualWorkPlaceName']); ?>">
</div>
</div>
<div class="form-group row">
<label for="EmployeeCode"
class="col-sm-4 col-form-label text-right">Profile:</label>
<div class="col-sm-8">
<input type="text" class="form-control form-control-sm"
name="UserType" id="UserType" readonly="readonly" value="<?php echo e($admindata['ProfileName']); ?>">
</div>
</div>
<div class="form-group row">
<label for="EmployeeCode"
class="col-sm-4 col-form-label text-right">Roles:</label>
<div class="col-sm-8">
<input type="text" class="form-control form-control-sm"
name="UserType" id="UserType" readonly="readonly" value="<?php echo e($admindata['RoleTitle']); ?>">
</div>
</div>
</div>
<div class="col-md-12">
<div class="float-right">
<div style="text-align:right">
<a href="<?php echo e(url('/edit-profile')); ?>/<?php echo e(Session::get('UserId')); ?>"
class="btn btn-warning text-white" >Edit Profile</a>
<a href="<?php echo e(url('/user/password/change')); ?>"
class="btn btn-warning text-white" >Change Password</a>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section><br />
<!-- /.content -->
</div>
<!-- /.content-wrapper -->
<?php $__env->stopSection(); ?>
<?php echo $__env->make('admin.include.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/html/hrms-production/resources/views/admin/user-profile-details.blade.php ENDPATH**/ ?>