/
var
/
www
/
html
/
gnet_live
/
storage
/
framework
/
views
/
Upload File
HOME
<form id="form_edit" class="form_edit" method="post" action="<?php echo e(route('meta.update', $meta->id)); ?>" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <?php echo method_field('PUT'); ?> <div class="form-group"> <label for="page-url">URL by Page<span class="contact__form--label__star">*</span></label> <select name="page_url"> <?php $__currentLoopData = $pageOptions; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $value => $label): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($value); ?>" <?php echo e($value == $selectedPage ? 'selected' : ''); ?>> <?php echo e($label); ?> </option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> <div class="form-group"> <label for="title">Meta Title</label> <input class="form-input" type="text" id="title" name="title" value="<?php echo e($meta->title); ?>"> </div> <div class="form-group"> <label for="description">Meta Description</label> <textarea class="form-input" id="description" name="description"><?php echo e($meta->description); ?></textarea> </div> <div class="form-group"> <label for="keywords">Meta Keywords</label> <input class="form-input" type="text" id="keywords" name="keywords" placeholder="Separate with a comma (,)" value="<?php echo e($meta->keywords); ?>"> </div> <div class="form-group"> <label for="thumbnail">Meta Thumbnail Image</label> <input class="form-input mb-0" type="file" id="thumbnail" name="thumbnail_image" accept="image/*"> <small class="text-primary">Max. Size 2 MB</small> <p>Existing File: <a href="<?php echo e(asset('uploads/' . $meta->thumbnail_image)); ?>" target="_blank"><?php echo e($meta->thumbnail_image); ?></a></p> </div> <div class="form-group"> <label for="custom-tags">Custom Meta Tags</label> <textarea class="form-input" id="custom-tags" name="custom_tags" placeholder="e.g. <meta name="author" content="GNET Team">"><?php echo e($meta->custom_tags); ?></textarea> </div> <div class="text-end mt-3"> <input id="btn-save" type="submit" class="primary__btn"> </div> </form> <?php /**PATH /var/www/html/gnet_live/resources/views/edit/edit-meta.blade.php ENDPATH**/ ?>