관리-도구
편집 파일: bf2f665de68c55b0c5ffba48cfde2788.php
<div class="tab-pane fade show <?php echo e(session('profile_tab') == 'social' ? 'active': ''); ?>" id="itemThree-tab-pane" role="tabpanel" aria-labelledby="itemThree-tab" tabindex="0"> <div class="instructor__profile-form-wrap"> <form action="<?php echo e(route('student.setting.socials.update')); ?>" method="POST" class="instructor__profile-form"> <?php echo csrf_field(); ?> <?php echo method_field('PUT'); ?> <div class="form-grp"> <label for="facebook"><?php echo e(__('Facebook')); ?></label> <input id="facebook" name="facebook" type="url" value="<?php echo e($user->facebook); ?>"> </div> <div class="form-grp"> <label for="twitter"><?php echo e(__('Twitter')); ?></label> <input id="twitter" name="twitter" type="url" value="<?php echo e($user->twitter); ?>"> </div> <div class="form-grp"> <label for="linkedin"><?php echo e(__('Linkedin')); ?></label> <input id="linkedin" name="linkedin" type="url" value="<?php echo e($user->linkedin); ?>"> </div> <div class="form-grp"> <label for="website"><?php echo e(__('Website')); ?></label> <input id="website" name="website" type="url" value="<?php echo e($user->website); ?>"> </div> <div class="form-grp"> <label for="github"><?php echo e(__('Github')); ?></label> <input id="github" name="github" type="url" value="<?php echo e($user->github); ?>"> </div> <div class="submit-btn mt-25"> <button type="submit" class="btn"><?php echo e(__('Update Social')); ?></button> </div> </form> </div> </div> <?php /**PATH /home/inprosysltd/public_html/skill.inprosysltd.com/resources/views/frontend/student-dashboard/profile/sections/social.blade.php ENDPATH**/ ?>