Viewing file: 1e0742a0a92b06870887ae7df2997384.php (3.21 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?>
<?php echo e(__('Login')); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<!-- Page Title-->
<div class="page-title">
<div class="container">
<div class="row">
<div class="col-lg-12">
<ul class="breadcrumbs">
<li><a href="<?php echo e(route('front.index')); ?>"><?php echo e(__('Home')); ?></a> </li>
<li class="separator"></li>
<li><?php echo e(__('Login')); ?></li>
</ul>
</div>
</div>
</div>
</div>
<!-- Page Content-->
<div class="container padding-bottom-3x mb-1">
<div class="row">
<div class="col-md-8 m-auto">
<form class="card" method="post" action="<?php echo e(route('user.login.submit')); ?>">
<?php echo csrf_field(); ?>
<div class="bg-danger text-white">
<?php echo $__env->make('alerts.alerts', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="card-body ">
<h4 class="margin-bottom-1x text-center"><?php echo e(__('Login')); ?></h4>
<div class="form-group input-group">
<input class="form-control" type="email" name="login_email" placeholder="<?php echo e(__('Email')); ?>" value="<?php echo e(old('login_email')); ?>"><span class="input-group-addon"><i class="icon-mail"></i></span>
</div>
<div class="form-group input-group">
<input class="form-control" type="password" name="login_password" placeholder="<?php echo e(__('Password')); ?>" ><span class="input-group-addon"><i class="icon-lock"></i></span>
</div>
<div class="d-flex flex-wrap justify-content-between padding-bottom-1x">
<div class="custom-control custom-checkbox">
<input class="custom-control-input" type="checkbox" id="remember_me">
<label class="custom-control-label" for="remember_me"><?php echo e(__('Remember me')); ?></label>
</div><a class="navi-link" href="<?php echo e(route('user.forgot')); ?>"><?php echo e(__('Forgot password?')); ?></a>
</div>
<div class="text-center">
<button class="btn btn-primary margin-bottom-none" type="submit"><span><?php echo e(__('Login')); ?></span></button>
</div>
<div class="mt-5 text-center">
<span class="text-secondary"> No account yet? </span>
<a href="<?php echo e(route('user.register')); ?>" class="create-account"> Create Account </a>
</div>
</div>
</form>
</div>
</div>
</div>
<!-- Site Footer-->
<?php $__env->stopSection(); ?>
<?php echo $__env->make('master.front', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH E:\ecommerce1\core\resources\views/user/auth/login.blade.php ENDPATH**/ ?>
|