Viewing file: 1e4af292e0c1c42eb4712d4848a8f9be.php (3.26 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('content'); ?>
<!--==== START CONTENT ====-->
<section class="my-5" >
<div class="row row2 login-box">
<div class="col-md-4 col-xl-4 col-sm-12 ">
<div class="login-form">
<div class="heading-xs my-2 text-center"><?php echo e(__('login')['login_now']); ?></div>
<span class="text-center">Enter your email address and password to access <?php echo e(config('settingConfig.config_store_name')); ?> account</span>
<form method="post" action="<?php echo e(route('customer.login')); ?>" class="my-3">
<?php if(Session::has('autherror')): ?>
<div class="text-center bg-danger p-2 my-2 round">
<strong class="text-white"><?php echo \Session::get('autherror'); ?>!</strong>
</div>
<?php endif; ?>
<?php echo csrf_field(); ?>
<div class="form-group">
<label for="email" class="form-label"> <?php echo e(__('commoninput')['email']); ?> <span class="text-danger"> * </span> </label>
<input type="email" class="form-control" id="email" name="email" placeholder="<?php echo e(__('commoninput')['placeholder_email']); ?>" value="<?php echo e(old('email')); ?>">
<?php echo $errors->first("email", "<span class='text-danger'>:message</span>"); ?>
</div>
<div class="form-group">
<label for="password" class="form-label"> <?php echo e(__('commoninput')['placeholder_password']); ?> <span class="text-danger"> * </span> </label>
<input type="password" class="form-control login-pass" id="password" name="password" placeholder="<?php echo e(__('commoninput')['your']); ?> <?php echo e(__('commoninput')['placeholder_password']); ?>..." value="<?php echo e(old('password')); ?>">
<span class="see-password-section">
<i class="fa fa-eye-slash"></i>
</span>
<?php echo $errors->first("password", "<span class='text-danger'>:message</span>"); ?>
</div>
<div class="text-center">
<button type="submit" id="submitlogin" value="submitlogin" class="submitbtn btn-lg"><?php echo e(__('registration')['button_login']); ?></button>
</div>
<div class="signup-section mt-2"><?php echo e(__('login')['label_registration_info']); ?> <a href="<?php echo e(route('customer.getregister')); ?>" class="sign-up "> <?php echo e(__('login')['button_registration']); ?></a>.</div>
</form>
</div>
</div>
<div class="d-none d-md-block d-xl-block d-xl-block col-md-8 col-lg-8 col-xl-8 ">
<img src="<?php echo e(asset('frontend')); ?>/images/login-bg.png" alt="">
</div>
</div>
</section>
<!--==== END CONTENT ====-->
<style media="screen">
.row2 {
--bs-gutter-x: 0rem;
}
</style>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('frontend.layouts.app', ['class' => 'bg-purple'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/smabmart/public_html/resources/views/frontend/user/login.blade.php ENDPATH**/ ?>
|