 

<?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 Partner Login</p>
			<?php echo $__env->make('includes.messages', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
			<?php echo Form::open(array('url' => 'initial_dashboard_login', 'method' => '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')]); ?>

				<?php echo Form::select('user_type',array('1'=>'Admin','2'=>'Sub-Account'),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 style="color:red; margin-top:20px; font-size:16px;"><?php echo Session::get('message'); ?></div>			
	</div>
	</div>
<?php $__env->stopSection(); ?>


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