<?php $__env->startSection('content'); ?>
      <p/>
    <!-- Content Header (Page header) -->
    <div class="gb ut">
  <div class="uv">
    <form role="form" action="ChangePWD" method="GET" class="alq dj j">
      <div class="l amb" style="width:100%">
        <h3> Change  Password </h3>
      </div>
       <div class="et" style="width:120%;margin-left:-30px;">
       	   <?php if(count($errors)>0): ?>
            <div class="alert alert-danger">
            	<ul style"list-style-type: none;">
                    <?php foreach($errors->all() as $error): ?>
	                	<li style"list-style-type: none;"> <font color="red" > <?php echo e($error); ?> </font> </li>
                    <?php endforeach; ?>
                </ul>
            </div>
        <?php endif; ?>

        <?php if(Session::has('success')): ?>
          <font color="green"> <?php echo e(Session::get('success')); ?> </font>
          <br/>
          <strong > <a href='/'> Login </a></strong>
          <br/>
        <?php endif; ?>

        <?php if(Session::has('error')): ?>
          <font color="red"> <?php echo e(Session::get('error')); ?> </font>
        <?php endif; ?>
      </div>

	  <div class="et">
        <input id="MobileNumber" name="MobileNumber" type="text" value="<?php echo e(old('MobileNumber')); ?>" class="form-control" placeholder="Mobile Number">
      </div>
      <div class="et">
        <input id="OTPEntered" name="OTPEntered" type="text" value="<?php echo e(old('OTPEntered')); ?>" class="form-control" placeholder=" OTP ">
      </div>

      <div class="et">
        <input id="NewPassword" name="NewPassword" type="password" class="form-control" placeholder="New Password">
      </div>
      <div class="et">
        <input id="ConfirmPassword" name="ConfirmPassword" type="password" class="form-control" placeholder="Confirm Password">
      </div>
      <div class="amb">
        <button class="cg fp"> Change Password </button>
      </div>

      <div class="row" style="margin-top:-20px;">
         <a href="Forget-Password" class="dp"> Resend OTP </a>
      </div>      

      <footer class="row">
        <a href="/" class="dp">Login</a>
      </footer>
    </form>
  </div>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('admin.layouts.login', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>