

<?php $__env->startSection('css'); ?>
<link href="<?php echo e(asset('/css/bootstrapValidator.min.css')); ?>" rel="stylesheet">
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
 
   <section class="signup">
       <div class="container">
           <div class="row out_of_bradcrom">
   <div class="col-md-3"></div>
           <div class="col-md-7 reul_msg">
          <?php if(Session::get('error_msg')): ?>
              <div class="alert alert-danger ">
                 <button type="button" class="close" data-dismiss="alert" aria-label="Close">
                   <span aria-hidden="true">&times;</span>
                 </button>
                  <?php echo e(Session::get('error_msg')); ?>

              </div>
          <?php endif; ?>
          <?php if(Session::get('succ_msg')): ?>
              <div class="alert alert-success ">
                 <button type="button" class="close" data-dismiss="alert" aria-label="Close">
                   <span aria-hidden="true">&times;</span>
                 </button>
                  <?php echo e(Session::get('succ_msg')); ?>

              </div>
          <?php endif; ?>
          </div>
       </div>
      <div class="row">
        <div class="col-md-3"></div>
        <div class="col-md-8 col-sm-12">
             <?php if($validation_errors && count($validation_errors) > 0): ?>
                <div class="alert alert-danger clearfix">
                    <strong>Whoops!</strong> There were some problems with your input.<br><br>
                    <ul>
                        <?php foreach($validation_errors as $error): ?>
                            <li><?php echo e($error); ?></li>
                        <?php endforeach; ?>
                    </ul>
                </div>
            <?php endif; ?>
        <div class="panel panel-default forgot-ps-panel">
  <div class="panel-heading">
    <h1 class="panel-title">Forgot Password</h1>
  </div>
  <div class="panel-body">
          
           <form class="" name="login" id="forgot" action="<?php echo e(url('/user/forgotpwd')); ?>" method="post">
           <input type="hidden" name="_token" value="<?php echo e(csrf_token()); ?>">
          <div class="form">
           
            <div class="col-sm-12">
              <div class="form-group">
                <input type="text" class="form-control" placeholder="Email Address" name="email">
              </div>
            </div>
           
            
            <div class="col-sm-4">
                <button type="submit" class="btn forgot-btn" name="forgot" id="signup_submit" value="forgot">Send</button>
            </div>
            
          </div>
        </form> 
        </div>
        </div>      
        </div>
      </div>
    </div>
  </section>

<?php $__env->stopSection(); ?>
<?php $__env->startSection('js'); ?>
<script src="<?php echo e(asset('js/bootstrapValidator.min.js')); ?>"></script>
<script src="<?php echo e(asset('js/maskedinput/jquery.maskedinput.min.js')); ?>"></script>
<script src="<?php echo e(asset('js/validation.js')); ?>"></script>
<?php $__env->stopSection(); ?>

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