관리-도구
편집 파일: 6e1353684a18da53c9589dcef4b8509b.php
<div class="fieldset"> <form action="<?php echo e($action ?? '#'); ?>" method="POST" data-key="skill"> <?php echo csrf_field(); ?> <input type="hidden" name="id" value="<?php echo e(authCheck()?->userable?->id); ?>"> <input type="hidden" name="user_id" value="<?php echo e(authCheck()?->id); ?>"> <div class="card"> <div class="form-label block"> <?php echo e(translate('Enter your Previous skill')); ?> .</div> <span> <?php if(count(authCheck()->skills) > 0): ?> <?php $skills = []; ?> <?php $__currentLoopData = authCheck()->skills; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $skill): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php array_push($skills, $skill->id); ?> <span class="tm-tag" id="vlgLk_<?php echo e($skill->id); ?>"><span><?php echo e($skill->name); ?></span> <a href="#" data-id="<?php echo e($skill->id); ?>" class="tm-tag-remove skill-remove" id="vlgLk_Remover_<?php echo e($skill->id); ?>" tagidtoremove="<?php echo e($skill->id); ?>">x</a> </span> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <input type="hidden" id="exitingSkills" name="exitingSkills" value="<?php echo e(implode(',', $skills)); ?>" /> <?php endif; ?> </span> <input type="text" name="skills" placeholder="<?php echo e(translate('Enter Your Skill')); ?>" class="typeahead tm-input form-input" /> <label class="form-label m-0 text-gray-900"> <?php echo e(translate('Please press')); ?> <code>[<?php echo e(translate('Enter')); ?>]</code> <?php echo e(translate('after writing your skill keyword')); ?>.</label> </div> <div class="card flex justify-end gap-4"> <button type="button" class="prev-form-btn btn b-outline btn-primary-outline"> <?php echo e(translate('Previous')); ?> </button> <button type="button" class="next-form-btn btn b-solid btn-primary-solid dk-theme-card-square"> <?php echo e(translate('Save & Continue')); ?> </button> </div> </form> </div> <?php /**PATH D:\www\edulab\Modules\LMS\resources\views\portals\components\profile\skill-form.blade.php ENDPATH**/ ?>