<?php $__env->startSection('content'); ?>   
 	 <p/>
    	<!-- Content Header (Page header) -->
    <div class="gb ut">
  <div class="uv">
    <form role="form" action="LoginMe" method="POST" class="alq dj j">
      <div class="et"> 
        <img src="<?php echo asset('theme/assets/images/AnnaBansode.png'); ?>" style="margin-top:50px;"></img>
      </div>
<!--      <div class="l amb" >
	      <img src="<?php echo asset('theme/assets/images/Satta - Round (1).png'); ?>"></img>
      </div> -->

      <!--  To Check user is login or not -->
     <div class="et"> 
      <?php if(count($errors)>0): ?>
        <div class="alert alert-danger">
            <?php foreach($errors->all() as $error): ?>
              <strong><font color="red"> <?php echo e($error); ?> </font> </strong><br/>
            <?php endforeach; ?>
        </div>
        <?php endif; ?>
       
        <?php if(Session::has('success')): ?>
          <font color="green"> <?php echo e(Session::get('success')); ?> </font>
        <?php endif; ?>

        <?php if(Session::has('error')): ?>
          <font color="red"> <?php echo e(Session::get('error')); ?> </font>
        <?php endif; ?>
      </div>
      <div class="et"> 
        <input class="form-control" id="Username" name="Username" value="<?php echo e(old('Username')); ?>" placeholder="Username">
      </div>
      <div class="et alu" >
        <input type="password" id="Password" name="Password" class="form-control" placeholder="Password">
      </div>
      <input type="hidden" name="_token" value="<?php echo e(csrf_token()); ?>">
      <div class="amb">
        <input type="submit" value="Log In" class="cg fp"></input>
      </div>
        <div class="amb">
          Forget Password ?<a href="Forget-Password" > Click Here </a>
      </div>
    </form>
  </div>
</div>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('admin.layouts.login', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>