
<?php $__env->startSection('subtitle'); ?>
Account
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
<div class="col-md-12">
    <h2>Account Information</h2>
    <span class="line"> <span class="sub-line"></span> </span>
</div>
<div class="col-md-7">
    <p>You can change your password here.</p>
    <?php echo Form::open( array('route' => 'account', 'class' => 'form-horizontal')); ?>
    <fieldset>
        <div class="form-group">
            <div class="col-md-12">
                <?php echo Form::password('password', array('class' => 'form-control input-lg', 'placeholder' => 'New Password')); ?>
            </div>
        </div>
        <div class="form-group">
            <div class="col-md-12">
                <?php echo Form::password('confirm_password', array('class' => 'form-control input-lg', 'placeholder' => 'Confirm New Password')); ?>
            </div>
        </div>
        <div class="form-group">
            <div class="col-md-12">
                <button type="submit" class="btn btn-primary btn-lg">
                    Save
                </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(); ?>