<?php $__env->startSection('title'); ?>
    <i class="fa fa-lock"></i> Change your password
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
    <div class="row">
        <div class="col-xs-12">
            <form method="post" action="<?php echo e(URL::action('UserController@postChangePassword')); ?>">
                <?php echo csrf_field(); ?>

                <div class="form-group">
                    <label class="control-label">Old Password</label>
                    <input type="password" name="oldPassword" class="form-control">
                </div>
                <div class="form-group">
                    <label class="control-label">New Password</label>
                    <input type="password" name="newPassword" class="form-control">
                </div>
                <div class="form-actions">
                    <button type="submit" class="btn btn-green">Update</button>
                </div>
            </form>
        </div>
    </div>

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