<?php $__env->startSection('content_header'); ?>
    <h1>Change Password</h1>
<?php $__env->stopSection(); ?>

<script src="//code.jquery.com/jquery.js"></script>

<?php $__env->startSection('content'); ?>
 <?php echo notifyCss(); ?>
 <?php echo notifyJs(); ?> 
    <?php if($errors->any()): ?>
    <div class="alert alert-danger">
        <ul>
            <?php $__currentLoopData = $errors->all(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $error): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                <li><?php echo e($error); ?></li>
            <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
        </ul>
    </div>
<?php endif; ?>

      <?php if(session('status')): ?>
    <div class="alert alert-success">
        <?php echo e(session('status')); ?>

    </div>
    <?php endif; ?>
    
  <?php echo $__env->make('notify::messages', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>

   <div class="row">
            <!--row starts-->

            <div class="col-md-12">
               
                <div class="panel panel-primary">
                    <div class="panel-heading">
                        <h3 class="panel-title">
                           Reset Password
                        </h3>
                </div>

                <div class="panel-body">
                        <form class="form-horizontal" action="password_settings_post" method="post">
                            <!-- CSRF Token -->
                           <input type="hidden" name="_token" value="<?php echo e(csrf_token()); ?>">
                                <!-- Name input-->
                                <div class="form-group">
                                    <label class="col-md-3 control-label" for="name">Current Password</label>
                                    <div class="col-md-9">
                                        <input id="current-password" name="current-password" type="password" maxlength="100" placeholder="Enter the Current Password" class="form-control">
                                    </div>
                                </div>


                                <div class="form-group">
                                    <label class="col-md-3 control-label" for="name">New Password</label>
                                    <div class="col-md-9">
                                        <input id="new-password" name="new-password" type="password" maxlength="100" placeholder="Enter the New Password" class="form-control">
                                    </div>
                                </div>

                                <div class="form-group">
                                    <label class="col-md-3 control-label" for="name">Retype New Password</label>
                                    <div class="col-md-9">
                                        <input id="new-password_confirmation" name="new-password_confirmation" type="password" maxlength="100" placeholder="Retype New Password" class="form-control">
                                    </div>
                                </div>
                                

                                <div class="form-position">
                                    <div class="col-md-12 text-right">
                                        <button type="submit" class="btn btn-responsive btn-primary btn-sm" onClick="return validation();">Submit</button>
                                    </div>
                                </div>
                        </form>
                    </div>
                </div>
               
            </div>
            <!--md-12 ends-->
        </div>


<?php $__env->stopSection(); ?>

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