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

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

    <div class="form-group">
        <label for="email">Email<small>*</small></label>
        <?php echo Form::text('email',null,['class'=>'form-control input-lg','id'=>'email','placeholder'=>t('Your Email'),'required'=>'required']); ?>

    </div>
    <div class="form-group">
        <label for="recaptcha"><?php echo e(t('Type these words')); ?><small>*</small></label>
        <?php echo Recaptcha::render(); ?>

    </div>
    <div class="form-group">
         <?php echo Form::submit(t('Password Reset'),['class'=>'btn btn-success']); ?>

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

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