<?php $__env->startSection('body2'); ?>

<h3>Personal Details</h3>
<hr>

<div class="row">
  <div class="col-md-2 visible-md visible-lg">
    <?php if(Auth::user()->profile->gender=='Male'): ?>
    <img src="/img-system/profileM.jpg">
    <?php else: ?>
    <img src="/img-system/profileF.jpg">
    <?php endif; ?>
  </div>
  <div class="col-md-6">
    <div class="form-horizontal">
      <div class="form-group">
        <label class="col-md-5">Member Since</label><?php echo Auth::user()->created_at; ?>
      </div>
      <div class="form-group">
        <label class="col-md-5">Member Status</label>Active
      </div>
      <hr>
      <div class="form-group">
        <label class="col-md-5">Name</label><?php echo Auth::user()->name; ?>
      </div>
      <div class="form-group">
        <label class="col-md-5">No IC / Passport</label><?php echo Auth::user()->profile->no_ic; ?>
      </div>
      <div class="form-group">
        <label class="col-md-5">Gender</label><?php echo Auth::user()->profile->gender; ?>
      </div>
      <div class="form-group">
        <label class="col-md-5">Birthday</label><?php echo Auth::user()->profile->birthdate; ?>
      </div>
      <div class="form-group">
        <label class="col-md-5">Address</label><?php echo Auth::user()->profile->address; ?>
      </div>
      <div class="form-group">
        <label class="col-md-5">Home Phone No</label><?php echo Auth::user()->profile->homephone; ?>
      </div>
      <div class="form-group">
        <label class="col-md-5">Office Phone No</label><?php echo Auth::user()->profile->officephone; ?>
      </div>
      <div class="form-group">
        <label class="col-md-5">Handphone No</label><?php echo Auth::user()->profile->handphone; ?>
      </div>
      <div class="form-group">
        <label class="col-md-5">Email</label><?php echo Auth::user()->profile->email; ?>
      </div>
    </div>
  </div>
  <div class="col-md-4">
    <!--div class="alert alert-warning">
      <center><b>Important Notice</b></center>
    </div-->
  </div>
</div>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('/member/template', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>