관리-도구
편집 파일: 7e76ade8fa4f3a7b897eda6c73b2447c.php
<div class="tab-pane fade show <?php echo e(session('profile_tab') == 'password' ? 'active' : ''); ?>" id="itemTwo-tab-pane" role="tabpanel" aria-labelledby="itemTwo-tab" tabindex="0"> <div class="instructor__profile-form-wrap"> <form action="<?php echo e(route('student.setting.password.update')); ?>" method="POST" class="instructor__profile-form"> <?php echo csrf_field(); ?> <?php echo method_field('PUT'); ?> <div class="form-grp"> <label for="currentpassword"><?php echo e(__('Current Password')); ?> <code>*</code></label> <input id="currentpassword" type="password" name="current_password" placeholder="<?php echo e(__('Current Password')); ?>"> </div> <div class="form-grp"> <label for="newpassword"><?php echo e(__('New Password')); ?> <code>*</code></label> <input id="newpassword" type="password" name="password" placeholder="<?php echo e(__('New Password')); ?>"> </div> <div class="form-grp"> <label for="repassword"><?php echo e(__('Re-Type New Password')); ?> <code>*</code></label> <input id="repassword" type="password" name="password_confirmation" placeholder="<?php echo e(__('Re-Type New Password')); ?>"> </div> <div class="submit-btn mt-25"> <button type="submit" class="btn"><?php echo e(__('Update Password')); ?></button> </div> </form> </div> </div> <?php /**PATH /home/inprosysltd/public_html/skill.inprosysltd.com/resources/views/frontend/student-dashboard/profile/sections/password.blade.php ENDPATH**/ ?>