Viewing file: 73a21c8dc2adc7ceae7d84f046caff6fcca8a29c.php (6.08 KB) -rwxrwxrwx Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('content'); ?> <?php echo $__env->make('layouts.headers.guest', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<div class="container mt--8 pb-5"> <div class="row justify-content-center"> <div class="col-lg-5 col-md-7"> <div class="card bg-secondary shadow border-0"> <div class="card-header bg-transparent pb-5"> <div class="text-center mt-2 mb-3" style="font-size: 40px;"><?php echo e(__('Sign in')); ?></div> <!-- <h1 class="text-white"><?php echo e(__('Welcome to Win Cloud Log In Page.')); ?></h1> -->
<!-- <div class="btn-wrapper text-center"> <a href="#" class="btn btn-neutral btn-icon"> <span class="btn-inner--icon"><img src="<?php echo e(asset('argon')); ?>/img/icons/common/github.svg"></span> <span class="btn-inner--text"><?php echo e(__('Github')); ?></span> </a> <a href="#" class="btn btn-neutral btn-icon"> <span class="btn-inner--icon"><img src="<?php echo e(asset('argon')); ?>/img/icons/common/google.svg"></span> <span class="btn-inner--text"><?php echo e(__('Google')); ?></span> </a> </div> --> </div> <div class="card-body px-lg-5 py-lg-5"> <!-- <div class="text-center text-muted mb-4"> <small> Create new account OR Sign in with these credentials: <br> Username <strong>admin@argon.com</strong> Password: <strong>secret</strong> </small> </div> --> <form role="form" method="POST" action="<?php echo e(route('login')); ?>"> <?php echo csrf_field(); ?>
<div class="form-group<?php echo e($errors->has('phone') ? ' has-danger' : ''); ?> mb-3"> <div class="input-group input-group-alternative"> <div class="input-group-prepend"> <span class="input-group-text"><i class="ni ni-email-83"></i></span> </div> <input class="form-control<?php echo e($errors->has('phone') ? ' is-invalid' : ''); ?>" placeholder="<?php echo e(__('phone')); ?>" type="text" name="phone" required autofocus> </div> <?php if($errors->has('phone')): ?> <span class="invalid-feedback" style="display: block;" role="alert"> <strong><?php echo e($errors->first('phone')); ?></strong> </span> <?php endif; ?> </div> <div class="form-group<?php echo e($errors->has('password') ? ' has-danger' : ''); ?>"> <div class="input-group input-group-alternative"> <div class="input-group-prepend"> <span class="input-group-text"><i class="ni ni-lock-circle-open"></i></span> </div> <input class="form-control<?php echo e($errors->has('password') ? ' is-invalid' : ''); ?>" name="password" placeholder="<?php echo e(__('Password')); ?>" type="password" required> </div> <?php if($errors->has('password')): ?> <span class="invalid-feedback" style="display: block;" role="alert"> <strong><?php echo e($errors->first('password')); ?></strong> </span> <?php endif; ?> </div> <div class="custom-control custom-control-alternative custom-checkbox"> <input class="custom-control-input" name="remember" id="customCheckLogin" type="checkbox" <?php echo e(old('remember') ? 'checked' : ''); ?>> <label class="custom-control-label" for="customCheckLogin"> <span class="text-muted"><?php echo e(__('Remember me')); ?></span> </label> </div> <div class="text-center"> <button type="submit" class="btn btn-primary my-4"><?php echo e(__('Sign in')); ?></button> </div> </form> </div> </div> <!-- <div class="row mt-3"> <div class="col-6"> <?php if(Route::has('password.request')): ?> <a href="<?php echo e(route('password.request')); ?>" class="text-light"> <small><?php echo e(__('Forgot password?')); ?></small> </a> <?php endif; ?> </div> <div class="col-6 text-right"> <a href="<?php echo e(route('register')); ?>" class="text-light"> <small><?php echo e(__('Create new account')); ?></small> </a> </div> </div> --> </div> </div> </div> <?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', ['class' => 'bg-default'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/html/reseller/resources/views/auth/login.blade.php ENDPATH**/ ?>
|