芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/public_html/storage/framework/views/144715ec7ca5b28ea8c911b0485bdd48.php
<?php $__env->startSection('content'); ?> <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title"><?php echo e(__('content.video')); ?> <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <?php echo e(__('content.'.$style)); ?> </button> <div class="dropdown-menu"> <a class="dropdown-item" href="<?php echo e(route('video.create', ['style' => 'style1'])); ?>"><?php echo e(__('content.style1')); ?></a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> <?php echo e(__('content.view_draft')); ?></a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="<?php echo e(asset('uploads/img/dummy/style/video-'.$style.'.jpg')); ?>" alt="draft image"> </div> </h4> <?php if(isset($item_section)): ?> <?php if($demo_mode == "on"): ?> <!-- Include Alert Blade --> <?php echo $__env->make('admin.demo_mode.demo-mode', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <?php else: ?> <form action="<?php echo e(route('video.update', $item_section->id)); ?>" method="POST" enctype="multipart/form-data"> <?php echo method_field('PUT'); ?> <?php echo csrf_field(); ?> <?php endif; ?> <input name="style" type="hidden" value="<?php echo e($style); ?>"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image"><?php echo e(__('content.image')); ?> (<?php echo e(__('content.size')); ?> 1920 x 640) (.svg, .jpg, .jpeg, .png, .webp)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted"><?php echo e(__('content.please_use_recommended_sizes')); ?></small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> <?php if(!empty($item_section->section_image)): ?> <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="<?php echo e(__('content.current_image')); ?>"> <img src="<?php echo e(asset('uploads/img/video/'.$item_section->section_image)); ?>" alt="image" class="rounded"> </a> <?php else: ?> <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="<?php echo e(__('content.current_image')); ?>"> <img src="<?php echo e(asset('uploads/img/dummy/no-image.jpg')); ?>" alt="no image" class="rounded w-25"> </a> <?php endif; ?> </div> <?php if(!empty($item_section->section_image)): ?> <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteModal<?php echo e($item_section->id); ?>"> <i class="fa fa-trash text-danger font-18"></i> </a> <?php endif; ?> </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="video_type" class="col-form-label"><?php echo e(__('content.video_type')); ?></label> <select class="form-control" name="video_type" id="video_type"> <option value="youtube" selected><?php echo e(__('content.select_your_option')); ?> </option> <option value="youtube" <?php echo e($item_section->video_type == 'youtube' ? 'selected' : ''); ?>><?php echo e(__('content.youtube')); ?></option> <option value="other" <?php echo e($item_section->video_type == 'other' ? 'selected' : ''); ?>><?php echo e(__('content.other')); ?></option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="video_url"><?php echo e(__('content.video_url')); ?> </label> <input type="text" name="video_url" class="form-control" id="video_url" value="<?php echo e($item_section->video_url); ?>"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title"><?php echo e(__('content.title')); ?></label> <input type="text" name="title" class="form-control" id="title" value="<?php echo e($item_section->title); ?>"> <small class="form-text text-muted"><?php echo e(__('content.recommended_tags')); ?> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')"><?php echo e(__('<a href="">')); ?></span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')"><?php echo e(__('<br>')); ?></span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')"><?php echo e(__('<b>')); ?></span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')"><?php echo e(__('<i>')); ?></span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')"><?php echo e(__('<span>')); ?></span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')"><?php echo e(__('<p>')); ?></small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2"><?php echo e(__('content.submit')); ?></button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#videoSectionDestroyModal<?php echo e($item_section->id); ?>"> <i class="fa fa-trash"></i> <?php echo e(__('content.reset')); ?> </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteModal<?php echo e($item_section->id); ?>" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModalCenterTitle"><?php echo e(__('content.delete')); ?></h5> <button type="button" class="close" data-dismiss="modal" aria-label="<?php echo e(__('content.close')); ?>"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> <?php echo e(__('content.you_wont_be_able_to_revert_this')); ?> </div> <div class="modal-footer"> <form class="d-inline-block" action="<?php echo e(route('video.destroy_image', $item_section->id)); ?>" method="POST"> <?php echo method_field('DELETE'); ?> <?php echo csrf_field(); ?> <button type="button" class="btn btn-danger mr-1" data-dismiss="modal"><?php echo e(__('content.cancel')); ?></button> <button type="submit" class="btn btn-success"><?php echo e(__('content.yes_delete_it')); ?></button> </form> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="videoSectionDestroyModal<?php echo e($item_section->id); ?>" tabindex="-1" role="dialog" aria-labelledby="videoSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="bannerSectionDestroyModalCenterTitle"><?php echo e(__('content.delete')); ?></h5> <button type="button" class="close" data-dismiss="modal" aria-label="<?php echo e(__('content.close')); ?>"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> <?php echo e(__('content.you_wont_be_able_to_revert_this')); ?> </div> <div class="modal-footer"> <form class="d-inline-block" action="<?php echo e(route('video.destroy', $item_section->id)); ?>" method="POST"> <?php echo method_field('DELETE'); ?> <?php echo csrf_field(); ?> <button type="button" class="btn btn-danger mr-1" data-dismiss="modal"><?php echo e(__('content.cancel')); ?></button> <button type="submit" class="btn btn-success"><?php echo e(__('content.yes_delete_it')); ?></button> </form> </div> </div> </div> </div> <?php else: ?> <?php if($demo_mode == "on"): ?> <!-- Include Alert Blade --> <?php echo $__env->make('admin.demo_mode.demo-mode', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <?php else: ?> <form action="<?php echo e(route('video.store')); ?>" method="POST" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <?php endif; ?> <input name="style" type="hidden" value="<?php echo e($style); ?>"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image"><?php echo e(__('content.image')); ?> (<?php echo e(__('content.size')); ?> 1920 x 640) (.svg, .jpg, .jpeg, .png, .webp) </label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted"><?php echo e(__('content.please_use_recommended_sizes')); ?></small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="video_type" class="col-form-label"><?php echo e(__('content.video_type')); ?></label> <select class="form-control" name="video_type" id="video_type"> <option value="youtube" selected><?php echo e(__('content.select_your_option')); ?> </option> <option value="youtube"><?php echo e(__('content.youtube')); ?></option> <option value="other"><?php echo e(__('content.other')); ?></option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="video_url"><?php echo e(__('content.video_url')); ?> </label> <input type="text" name="video_url" class="form-control" id="video_url"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title"><?php echo e(__('content.title')); ?></label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted"><?php echo e(__('content.recommended_tags')); ?> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')"><?php echo e(__('<a href="">')); ?></span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')"><?php echo e(__('<br>')); ?></span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')"><?php echo e(__('<b>')); ?></span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')"><?php echo e(__('<i>')); ?></span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')"><?php echo e(__('<span>')); ?></span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')"><?php echo e(__('<p>')); ?></small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2"><?php echo e(__('content.submit')); ?></button> </div> </div> </form> <?php endif; ?> </div> </div> </div> <!-- end row --> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.admin.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/digitalh/public_html/resources/views/admin/sections/video/create.blade.php ENDPATH**/ ?>
Page is not found
Oops! Page not found.
Sorry, an error has occured, Requested page not found!
Back To Homepage