%PDF- %PDF-
Direktori : /var/www/html/conference/storage/framework/views/ |
Current File : /var/www/html/conference/storage/framework/views/ab3cd12146d7e6817a34192658de84d2db872701.php |
<?php $__env->startSection('content'); ?> <div class="container"> <div class="row justify-content-center"> <div class="col-md-8"> <div class="card card-default"> <div class="card-header">Login</div> <div class="card-body"> <form method="POST" action="<?php echo e(route('login')); ?>"> <?php echo e(csrf_field()); ?> <div class="form-group row"> <label for="email" class="col-sm-4 col-form-label text-md-right">E-Mail Address</label> <div class="col-md-6"> <input id="email" type="email" class="form-control<?php echo e($errors->has('email') ? ' is-invalid' : ''); ?>" name="email" value="<?php echo e(old('email')); ?>" required autofocus> <?php if($errors->has('email')): ?> <span class="invalid-feedback"> <strong><?php echo e($errors->first('email')); ?></strong> </span> <?php endif; ?> </div> </div> <div class="form-group row"> <label for="password" class="col-md-4 col-form-label text-md-right">Password</label> <div class="col-md-6"> <input id="password" type="password" class="form-control<?php echo e($errors->has('password') ? ' is-invalid' : ''); ?>" name="password" required> <?php if($errors->has('password')): ?> <span class="invalid-feedback"> <strong><?php echo e($errors->first('password')); ?></strong> </span> <?php endif; ?> </div> </div> <div class="form-group row"> <div class="col-md-6 offset-md-4"> <div class="checkbox"> <label> <input type="checkbox" name="remember" <?php echo e(old('remember') ? 'checked' : ''); ?>> Remember Me </label> </div> </div> </div> <div class="form-group row mb-0"> <div class="col-md-8 offset-md-4"> <button type="submit" class="btn btn-primary"> Login </button> <a class="btn btn-link" href="<?php echo e(route('password.request')); ?>"> Forgot Your Password? </a> </div> </div> </form> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.app', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>