<?php $__env->startSection('content'); ?>
    <h1 class="content-heading"><?php echo e(t('Login')); ?></h1>

    <?php echo Form::open(); ?>

    <div class="form-group">
        <?php echo Form::label('username', t('Email address')); ?>

        <?php echo Form::text('username',null,array('class'=>'form-control input-lg','id'=>'username','placeholder'=> t('Email address'), 'required')); ?>

    </div>
    <div class="form-group">
        <?php echo Form::label('password', t('Password')); ?>

        <?php echo Form::password('password',['class'=>'form-control input-lg','id'=>'password','placeholder'=>t('Password'),'autocomplete'=>'off', 'required']); ?>

    </div>
    <div class="form-group">
        <label>
            <?php echo Form::checkbox('remember-me', 'value'); ?> <?php echo e(t('Remember Me')); ?>

        </label>
    </div>
    <?php if(Session::get('force_captcha')): ?>
        <div class="form-group">
            <label for="recaptcha"><?php echo e(t('Type these words')); ?>

                <small>*</small>
            </label>
            <?php echo Recaptcha::render(); ?>

        </div>
    <?php endif; ?>
    <div class="form-inline">
        <div class="form-group">
            <div class="form-group"><?php echo Form::submit(t('Login'),['class'=>'btn btn-success btn-lg']); ?></div>
            <div class="form-group"><a href="<?php echo e(route('password.reminder')); ?>" class='btn btn-info btn-lg'><?php echo e(t('Forgot your password?')); ?></a></div>
        </div>
    </div>
    <?php echo Form::close(); ?>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('master/index', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>