Viewing: 1f6db958065786c66c280a4b796aedce2c0df8b5.php
<!-- Review Modal --> <div class="modal fade" id="reviewModal<?php echo e($id); ?>" tabindex="-1" aria-labelledby="reviewModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg"> <div class="modal-content"> <div class="modal-header px-sm-5"> <h1 class="modal-title fs-5" id="reviewModalLabel"><?php echo e(translate('Submit_a_review')); ?></h1> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <form action="<?php echo e(route('review.store')); ?>" method="post" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <div class="modal-body px-sm-5"> <div class="form-group mb-4"> <label for="rating"><?php echo e('Rating'); ?></label> <select name="rating" id="rating" class="form-select"> <option value="1"><?php echo e(translate('1')); ?></option> <option value="2"><?php echo e(translate('2')); ?></option> <option value="3"><?php echo e(translate('3')); ?></option> <option value="4"><?php echo e(translate('4')); ?></option> <option value="5"><?php echo e(translate('5')); ?></option> </select> </div> <div class="form-group mb-4"> <label for="comment"><?php echo e(translate('Comment')); ?></label> <input name="product_id" value="<?php echo e($order_details->product_id); ?>" hidden> <input name="order_id" value="<?php echo e($order_details->order_id); ?>" hidden> <textarea name="comment" id="comment" class="form-control" rows="4" placeholder="Leave a comment"></textarea> </div> <div class="form-group"> <label><?php echo e(translate('Attachment')); ?></label> <div class="d-flex flex-column gap-3"> <div class="row coba"></div> <div class="text-muted"><?php echo e(translate('File_type:_jpg_jpeg_png._Maximum_size:_2MB')); ?></div> </div> </div> </div> <div class="modal-footer gap-3 pb-4 px-sm-5"> <a href="<?php echo e(URL::previous()); ?>" class="btn btn-secondary m-0" data-bs-dismiss="modal"><?php echo e(translate('Back')); ?></a> <button type="submit" class="btn btn-primary m-0"><?php echo e(translate('Submit')); ?></button> </div> </form> </div> </div> </div> <?php /**PATH /home/u728836105/domains/sakashappliances.com/public_html/resources/themes/theme_aster/theme-views/layouts/partials/modal/_review.blade.php ENDPATH**/ ?>
Return