File: D:/HostingSpaces/SBogers85/equichecker.com/storage/framework/views/db06f0e51827d1a1da023b264630d919
<?php $__env->startSection('body'); ?>
<div class="panel center">
<?php echo Form::open(['method'=>'post', 'class' => 'form-group']); ?>
<?php if(Session::has('success')): ?>
<div class="alert alert-success">
<?php echo Session::get('success')->first(); ?>
</div>
<?php endif; ?>
<div>
<label for="email">E-mail address</label>
<?php echo Form::email('email', null, ['class' => 'form-control field']); ?>
</div>
<div>
<label for="password">Password</label>
<?php echo Form::password('password', ['class' => 'form-control field']); ?>
</div>
<div>
<?php echo Form::submit('log in', ['class' => 'button-primary']); ?>
</div>
<?php echo Form::close(); ?>
</div>
<div class="alert center alert-warning<?php echo $errors->first('message', ' has-error'); ?>">
<?php echo $errors->first('message'); ?><br>
<?php echo $errors->first('action'); ?>
</div>
<div class="forgot-password center">
<?php echo HTML::linkRoute('customer.password.forgot', 'Forgot password?'); ?>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('equichecker.layouts.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>