<?php $__env->startSection('content'); ?>

  <div class="special-form">
      <a href="<?php echo e(route('home')); ?>"><img src="<?php echo e(\App\Helpers\Helpers::logoUrl()); ?>" alt=""></a>
      <h3 class="text-center">LOGIN</h3>
      <?php if($errors->first()): ?>
          <span class="status-msg error-msg"><?php echo e($errors->first()); ?></span>
      <?php endif; ?>
      <hr>
    <?php echo Form::open(array('action' => 'UsersController@login')); ?>

        <div class="form-group">
            <label for="email" class="color-primary">Email:</label>
            <?php echo Form::text( 'email', null, array('class' => 'form-control', "placeholder" => "Email","autofocus" => "true" )); ?>

        </div>
        <div class="form-group">
            <label for="password" class="color-primary">Password:</label>
            <?php echo Form::password( 'password', array('class' => 'form-control', "placeholder" => "Password" )); ?>

        </div>
        <div class="form-group">
            <?php echo Form::submit( 'Login', array('class' => 'btn btn-primary btn-wide')); ?>

        </div>
    <?php echo Form::close(); ?>

    <p>Don't have an account? <a href="<?php echo e(route('register')); ?>">register</a></p>
  </div>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('templates.outs.auth', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>