Server IP : 173.249.157.85 / Your IP : 52.15.61.81 Web Server : Apache System : Linux server.frogzhost.com 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64 User : econtech ( 1005) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/econtech/public_html/storage/framework/views/ |
Upload File : |
<?php $__env->startSection('content'); ?> <div class="main-panel"> <div class="content-wrapper"> <div class="col-12 grid-margin stretch-card"> <div class="card"> <div class="card-body"> <h4 class="card-title">Create Product</h4> <!-- <p class="card-description"> Create User </p> --> <form class="forms-sample" method="POST" action="<?php echo e(route('products.store')); ?>" enctype="multipart/form-data"> <?php echo e(csrf_field()); ?> <div class="form-group"> <label for="exampleInputName1">Name</label> <input type="text" class="form-control" id="exampleInputName1" placeholder="Name" name="title" required="required"> </div> <div class="form-group"> <label for="exampleInputEmail3">Content</label> <textarea class="form-control" name="content" id="editor3" required="required" ></textarea> </div> <div class="form-group"> <label for="exampleSelect1">Sub Of</label> <select class="form-control" id="exampleSelect1" name="page_id"> <option value="" selected="selected" disabled="disabled">Select Sub Of</option> <?php $__currentLoopData = $divisions; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $division): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($division->id); ?>"><?php echo e($division->title); ?></option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> <div class="row"> <div class="col-md-6"> <div class="form-group row"> <label for="example-tel-input" class="col-2 col-form-label">Image</label> <div class="col-10"> <input type="file" name="image" id="file" /> <label for="file" class="btn-2">Click to upload</label> </div> </div> </div> <div class="col-md-6"> <div class="form-group"> <label>Gallery</label> <div class="kt-radio-inline"> <label class="kt-radio"> <input type="radio" name="gallery" value="1"> Yes <span></span> </label> <label class="kt-radio"> <input type="radio" name="gallery" value="0" checked="checked"> No <span></span> </label> </div> </div> </div> </div> <div class="kt-portlet__foot"> <div class="kt-form__actions"> <button type="submit" class="btn btn-primary">Submit</button> </div> </div> <!-- <button class="btn btn-light">Cancel</button> --> </form> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('scripts'); ?> <script> CKEDITOR.replace( 'editor1' ); </script> <script> CKEDITOR.replace( 'editor2' ); </script> <script> CKEDITOR.replace( 'editor3' ); </script> <script> CKEDITOR.replace( 'editor4' ); </script> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.new_dashboard', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>