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/da2a6469a19aa83dbdb8d53bda163bb1f9cf387d.php |
<?php $__env->startSection('content'); ?> <div class="row"> <div class="col-xs-12 col-sm-7 col-md-7 col-lg-4"> <h1 class="post-title txt-color-blueDark"> <i class="fa fa-table fa-fw "></i> Table <span>> Post </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/posts/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>Post 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($post)): ?> <form class="form-horizontal" method="POST" action="<?php echo e(route('admin.posts.store')); ?>" enctype="multipart/form-data"> <?php echo e(csrf_field()); ?> <fieldset> <div class="form-group"> <label class="col-md-2 control-label">Title</label> <div class="col-md-7"> <input class="form-control" placeholder="Title" type="text" name="title" required> </div> </div> <div class="form-group"> <label class="col-md-2 control-label">Description</label> <div class="col-md-10"> <textarea class="ckeditor" name="description" id="description"></textarea> </div> </div> <div class="form-group"> <label class="col-md-2 control-label">Feature Image</label> <div class="col-md-10 col-xs-12"> <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.posts.update', $post)); ?>" 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">Title</label> <div class="col-md-7"> <input class="form-control" placeholder="Title" type="text" name="title" value="<?php echo e($post->title); ?>" required> </div> </div> <div class="form-group"> <label class="col-md-2 control-label">Description</label> <div class="col-md-10"> <textarea class="ckeditor" name="description" id="description"><?php echo e($post->description); ?></textarea> </div> </div> <div class="form-group"> <label class="col-md-2 control-label">Feature Image</label> <div class="col-md-10 col-xs-12"> <img class="img-responsive small-size-img img-clickable feature-img feature-image" src="<?php echo e($post->feature_image?asset($post->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> </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/supermaster789/resources/views/admin/post/postForm.blade.php ENDPATH**/ ?>