관리-도구
편집 파일: 793f7058f589e12c5fa40fcd3dd22291.php
<div class="tab-pane fade show <?php echo e(session('profile_tab') == 'location' ? 'active' : ''); ?>" id="itemSix-tab-pane" role="tabpanel" aria-labelledby="itemSix-tab" tabindex="0"> <div class="instructor__profile-form-wrap"> <form action="<?php echo e(route('student.setting.address.update')); ?>" method="POST" class="instructor__profile-form"> <?php echo csrf_field(); ?> <?php echo method_field('PUT'); ?> <div class="row"> <div class="col-md-4"> <div class="form-grp"> <label for="country"><?php echo e(__('Country')); ?> <code>*</code></label> <select name="country" id="country" class="country form-select"> <option value=""><?php echo e(__('Select')); ?></option> <?php $__currentLoopData = countries(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $country): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option <?php if($user->country_id == $country->id): echo 'selected'; endif; ?> value="<?php echo e($country->id); ?>"><?php echo e($country->name); ?></option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> </div> <div class="col-md-4"> <div class="form-grp"> <label for="state"><?php echo e(__('State')); ?></label> <input type="text" class="form-control" name="state" id="state" value="<?php echo e($user->state); ?>"> </div> </div> <div class="col-md-4"> <div class="form-grp"> <label for="city"><?php echo e(__('City')); ?></label> <input type="text" class="form-control" name="city" id="city" value="<?php echo e($user->city); ?>"> </div> </div> <div class="col-md-12"> <div class="form-grp"> <label for="address"><?php echo e(__('Address')); ?></label> <input id="address" value="<?php echo e($user->address); ?>" type="address" name="address" placeholder="<?php echo e(__('Address')); ?>"> </div> </div> </div> <div class="submit-btn mt-25"> <button type="submit" class="btn"><?php echo e(__('Update Location')); ?></button> </div> </form> </div> </div> <?php /**PATH /home/inprosysltd/public_html/skill.inprosysltd.com/resources/views/frontend/student-dashboard/profile/sections/location.blade.php ENDPATH**/ ?>