/
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('popup_banner.update', $popup_banner->id)); ?>" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <?php echo method_field('PUT'); ?> <div class="form-group"> <label for="nama_kategori">Url:</label> <input type="text" class="form-input" id="url" name="url" value="<?php echo e(@$popup_banner->url); ?>"> </div> <div class="form-group mb-2"> <label for="headline">Image: <span class="inline-color-red">*</span></label> <input class="form-input" type="file" id="image" name="image" accept="image/*" > <small class="text-primary">Max. Size 2 MB | 1011 x 600</small> <p>Existing File: <a href="<?php echo e(asset('assets/img/products/' . $popup_banner->image)); ?>" target="_blank"><?php echo e($popup_banner->image); ?></a></p> </div> <div class="form-group"> <label for="headline">Headline: <span class="inline-color-red">*</span></label> <input class="form-input" type="text" id="headline" name="headline" value="<?php echo e(@$popup_banner->headline); ?>"> </div> <div class="form-group"> <label for="description">Description: <span class="inline-color-red">*</span></label> <input class="form-input" type="text" id="description" name="description" value="<?php echo e(@$popup_banner->description); ?>"> </div> <div class="form-group"> <label for="cta">CTA: <span class="inline-color-red">*</span></label> <input class="form-input" type="text" id="cta" name="cta" value="<?php echo e(@$popup_banner->cta); ?>"> </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-popup-banner.blade.php ENDPATH**/ ?>