Path : /var/www/html/master288-bk2/storage/framework/views/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/html/master288-bk2/storage/framework/views/bf740909e72af8c1e35a6b123385f775a5de0033.php |
<?php $__env->startSection('content'); ?> <div class="row"> <div class="col-xs-12 col-sm-7 col-md-7 col-lg-4"> <h1 class="slide-title txt-color-blueDark"> <i class="fa fa-table fa-fw "></i> Table <span>> Slide </span> <span>> Form </span> </h1> </div> <div class="col-xs-12 col-sm-5 col-md-5 col-lg-8"> <a class="btn btn-primary pull-right" href="/admin/slides/create"> <i class="fa fa-plus"></i> Add New </a> </div> </div> <!-- widget grid --> <section id="widget-grid" class=""> <!-- row --> <div class="row"> <!-- NEW WIDGET START --> <article class="col-sm-12 col-md-12 col-lg-12"> <!-- Widget ID (each widget will need unique ID)--> <div class="jarviswidget" id="wid-id-0" data-widget-colorbutton="false" data-widget-editbutton="false"> <header> <span class="widget-icon"> <i class="fa fa-eye"></i> </span> <h2>Slide Form</h2> </header> <!-- widget div--> <div> <!-- widget edit box --> <div class="jarviswidget-editbox"> <!-- This area used as dropdown edit box --> </div> <!-- end widget edit box --> <!-- widget content --> <div class="widget-body"> <?php if(empty($slide)): ?> <form class="form-horizontal" method="POST" action="<?php echo e(route('admin.slides.store')); ?>" enctype="multipart/form-data"> <?php echo e(csrf_field()); ?> <fieldset> <div class="form-group"> <label class="col-md-2 control-label">Order</label> <div class="col-md-7"> <input class="form-control" placeholder="Order" type="text" name="order"> </div> </div> <div class="form-group"> <label class="col-md-2 control-label">Feature Image</label> <div class="col-md-10"> <img class="img-responsive small-size-img img-clickable feature-img feature-image" src="<?php echo e(asset('images/no-image.jpg')); ?>" alt="No Image"/> <input type="file" id="feature_image" class="hidden-element feature-image" name="feature_image"/> </div> </div> </fieldset> <div class="form-actions"> <div class="row"> <div class="col-md-12"> <button class="btn btn-default" type="button" onclick="window.history.back();"> Cancel </button> <button class="btn btn-primary" type="submit" return="false"> <i class="fa fa-save"></i> Save </button> </div> </div> </div> </form> <?php else: ?> <form class="form-horizontal" method="POST" action="<?php echo e(route('admin.slides.update', $slide)); ?>" enctype="multipart/form-data"> <input name="_method" type="hidden" value="PUT"> <?php echo e(csrf_field()); ?> <fieldset> <div class="form-group"> <label class="col-md-2 control-label">Order</label> <div class="col-md-7"> <input class="form-control" placeholder="Order" type="text" name="order" value="<?php echo e($slide->order); ?>"> </div> </div> <div class="form-group"> <label class="col-md-2 control-label">Feature Image</label> <div class="col-md-10"> <img class="img-responsive small-size-img img-clickable feature-img feature-image" src="<?php echo e($slide->feature_image?asset($slide->feature_image):asset('images/no-image.jpg')); ?>" alt="No Image"/> <input type="file" id="feature_image" class="hidden-element feature-image" name="feature_image"/> </div> </div> <div class="form-group"> <label class="col-md-2 control-label">Feature Image</label> <div class="col-md-10"> <select name="is_active"> <option value="1" <?php if($slide->is_active==1): ?> selected <?php endif; ?>>Enable</option> <option value="0" <?php if($slide->is_active==0): ?> selected <?php endif; ?>>Disable</option> </select> </div> </div> </fieldset> <div class="form-actions"> <div class="row"> <div class="col-md-12"> <button class="btn btn-default" type="button" onclick="window.history.back();"> Cancel </button> <button class="btn btn-primary" type="submit"> <i class="fa fa-save"></i> Save </button> </div> </div> </div> </form> <?php endif; ?> </div> <!-- end widget content --> </div> <!-- end widget div --> </div> <!-- end widget --> <!-- end widget --> </article> <!-- WIDGET END --> </div> <!-- end row --> </section> </div> <!-- END MAIN CONTENT --> </div> <!-- END MAIN PANEL --> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.admin', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/html/master288/resources/views/admin/slide/slideForm.blade.php ENDPATH**/ ?>