 

<?php $__env->startSection('title'); ?>
<?php echo trans('users::users.login.title'); ?> -
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
<style>
select{
margin-top:10px;
margin-left:5px;
width: 98% !important;
}

</style>
<div class="login_bx">
  				<div class="login_bx_cnt">
  					<div class="login_logo">
  						<img alt="" src="<?php echo asset('assets/images/ewards_logo.png'); ?>">
  						<p>eWards Merchant Panel</p>
  						<?php echo $__env->make('includes.messages', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
  						<?php echo Form::open(['route' => 'merchant:login:post']); ?>

  							<?php echo Form::text('email', Input::old('email'), ['class' => 'required', 'placeholder' => trans('users::users.login.enter_email')]); ?>

			<?php echo Form::password('password',['class' => 'required','placeholder'=>trans('users::users.login.enter_password')]); ?>

<!--   							  							<span><a href="<?php echo URL::to('merchant/forgotpassword'); ?>" class="forget_pass"><?php echo trans('users::users.forgotpassword.title'); ?>?</a> -->
<!--   							  							</span> -->
			<?php echo Form::select('user_type',array('1'=>'Merchant','2'=>'Employee'),Input::old('user_type'),
				array('class' =>'required form-control','id'=>'user_type')); ?>

					
  							<?php echo Form::submit(trans('users::users.login.login_button')); ?>

  						<?php echo Form::close(); ?>

  					</div>
  					<p><a href="<?php echo URL::to('merchant/forgotpassword'); ?>" style="font-size: 16px;color:#0E2B87"><?php echo trans('users::users.forgotpassword.title'); ?>?</a></p> 
  					
  				</div>
  			
  			</div>
<?php $__env->stopSection(); ?>


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