
<?php $__env->startSection('subtitle'); ?>
Password Reminder
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
<div class="col-md-12">
    <h2>Password Reminder</h2>
    <span class="line"> <span class="sub-line"></span> </span>
</div>
<div class="col-md-7">
    <?php echo Form::open(array('action' => 'RemindersController@postRemind', 'id' => 'reminderForm', 'class' => 'form-horizontal')); ?>
    <fieldset>
        <div class="form-group">
            <div class="col-lg-12">
                <?php echo Form::text('email', '', array('class' => 'form-control input-lg', 'placeholder' => 'Email', 'required' => '')); ?>
            </div>
        </div>
        <div class="form-group">
            <div class="col-lg-12">
                <button type="submit" class="btn btn-primary btn-lg">
                    Send Reminder
                </button>
            </div>
        </div>
    </fieldset>
    <?php echo Form::close(); ?>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>