JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr gilour

File "47a0b7be641aa5c641a8a035ffe42c9a.php"

Full Path: /home/mipedido/web/mipedido.app/public_html/storage/framework/views/47a0b7be641aa5c641a8a035ffe42c9a.php
File size: 31.47 KB
MIME-type: text/x-php
Charset: utf-8

<?php $__env->startSection('page-title'); ?>
    <?php echo e(__('Product')); ?>

<?php $__env->stopSection(); ?>
<?php $__env->startSection('title'); ?>
    <?php echo e(__('Product')); ?>

<?php $__env->stopSection(); ?>
<?php
    $plan = Utility::user_plan();
?>
<?php $__env->startSection('breadcrumb'); ?>
    <li class="breadcrumb-item"><a href="<?php echo e(route('dashboard')); ?>"><?php echo e(__('Home')); ?></a></li>
    <li class="breadcrumb-item"><a href="<?php echo e(route('product.index')); ?>"><?php echo e(__('Product')); ?></a></li>

    <li class="breadcrumb-item active" aria-current="page"><?php echo e(__('Product Create')); ?></li>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('action-btn'); ?>
    <div class="pr-2">
        <?php if($plan['enable_chatgpt'] == 'on'): ?>
            <a class="btn btn-primary me-1" href="#" data-size="lg" data-ajax-popup-over="true"
                data-url="<?php echo e(route('generate', ['products'])); ?>" data-bs-toggle="tooltip" data-bs-placement="top"
                title="<?php echo e(__('Generate')); ?>" data-title="<?php echo e(__('Generate product Name')); ?>"> <i class="fas fa-robot"></i>
                <?php echo e(__('Generate With AI')); ?>

            </a>
        <?php endif; ?>
        <a href="<?php echo e(route('product.index')); ?>" class="btn btn-secondary me-1"> <i data-feather="x-circle"
                class="me-1"></i><?php echo e(__('Cancel')); ?></a>
        <a type="submit" id="submit-all" class="btn btn-primary text-white"> <i data-feather="check-circle"
                class="me-2"></i><?php echo e(__('Create')); ?></a>
    </div>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('filter'); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startPush('css-page'); ?>
    <link rel="stylesheet" href="<?php echo e(asset('custom/libs/summernote/summernote-bs4.css')); ?>">
<?php $__env->stopPush(); ?>

<?php $__env->startPush('script-page'); ?>
    <script src="<?php echo e(asset('custom/libs/summernote/summernote-bs4.js')); ?>"></script>
    <script>
        var Dropzones = function() {
            var e = $('[data-toggle="dropzone1"]'),
                t = $(".dz-preview");
            var CSRF_TOKEN = $('meta[name="csrf-token"]').attr('content');
            e.length && (Dropzone.autoDiscover = !1, e.each(function() {
                var e, a, n, o, i;
                e = $(this), a = void 0 !== e.data("dropzone-multiple"), n = e.find(t), o = void 0, i = {
                    url: "<?php echo e(route('product.store')); ?>",
                    headers: {
                        'x-csrf-token': CSRF_TOKEN,
                    },
                    thumbnailWidth: null,
                    thumbnailHeight: null,
                    previewsContainer: n.get(0),
                    previewTemplate: n.html(),
                    maxFiles: 10,
                    parallelUploads: 10,
                    autoProcessQueue: false,
                    uploadMultiple: true,
                    acceptedFiles: a ? null : "image/*",
                    success: function(file, response) {
                        if (response.flag == "success") {
                            show_toastr('success', response.msg, 'success');
                            window.location.href = "<?php echo e(route('product.index')); ?>";
                        } else {
                            show_toastr('Error', response.msg, 'error');
                        }
                    },
                    error: function(file, response) {
                        // Dropzones.removeFile(file);
                        if (response.error) {
                            show_toastr('Error', response.msg, 'error');
                        } else {
                            show_toastr('Error', response.msg, 'error');
                        }
                    },
                    init: function() {
                        var myDropzone = this;

                        this.on("addedfile", function(e) {
                            !a && o && this.removeFile(o), o = e
                        })
                    }
                }, n.html(""), e.dropzone(i)
            }))
        }()

        $('#submit-all').on('click', function(e) {
            $('#create-product').trigger('click');
        });

        $(document).on("submit", "#frmTarget", function(e) {
            e.preventDefault();
            var fd = new FormData();
            var file = document.getElementById('is_cover_image').files[0];
            var downloadable_prodcutfile = document.getElementById('downloadable_prodcut').files[0];
            if (file) {
                fd.append('is_cover_image', file);
            }
            if (downloadable_prodcutfile) {
                fd.append('downloadable_prodcut', downloadable_prodcutfile);
            }

            var files = $('[data-toggle="dropzone1"]').get(0).dropzone.getAcceptedFiles();
            $.each(files, function(key, file) {
                fd.append('multiple_files[' + key + ']', $('[data-toggle="dropzone1"]')[0].dropzone
                    .getAcceptedFiles()[key]); // attach dropzone image element
            });
            var other_data = $('#frmTarget').serializeArray();
            $.each(other_data, function(key, input) {
                fd.append(input.name, input.value);
            });
            $.ajax({
                url: "<?php echo e(route('product.store')); ?>",
                headers: {
                    'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
                },
                data: fd,
                contentType: false,
                processData: false,
                type: 'POST',
                success: function(data) {
                    if (data.flag == "success") {
                        show_toastr('success', data.msg, 'success');
                        setTimeout(() => {
                            window.location.href = "<?php echo e(route('product.index')); ?>";
                        }, 1500);
                    } else {

                        show_toastr('Error', data.msg, 'error');
                    }
                },
                error: function(data) {
                    // Dropzones.removeFile(file);
                    if (data.flag) {
                        show_toastr('Error', data.msg, 'error');
                    } else {
                        show_toastr('Error', data.msg, 'error');
                    }
                },
            });
        });

        $(document).on('click', '.get-variants', function(e) {

            $("#commonModal .modal-title").html('<?php echo e(__('Add Variants')); ?>');
            $("#commonModal .modal-dialog").addClass('modal-md');
            $("#commonModal").modal('show');

            $.get('<?php echo e(route('product.variants.create')); ?>', {}, function(data) {
                $('#commonModal .body').html(data);
            });
        });

        $(document).on('click', '.add-variants', function(e) {
            e.preventDefault();

            var form = $(this).parents('form');
            var variantNameEle = $('#variant_name');
            var variantOptionsEle = $('#variant_options');
            var isValid = true;

            if (variantNameEle.val() == '') {
                variantNameEle.focus();
                isValid = false;
            } else if (variantOptionsEle.val() == '') {
                variantOptionsEle.focus();
                isValid = false;
            }

            if (isValid) {
                $.ajax({
                    url: form.attr('action'),
                    datType: 'json',
                    data: {
                        variant_name: variantNameEle.val(),
                        variant_options: variantOptionsEle.val(),
                        hiddenVariantOptions: $('#hiddenVariantOptions').val()
                    },
                    success: function(data) {
                        $('#hiddenVariantOptions').val(data.hiddenVariantOptions);
                        $('.variant-table').html(data.varitantHTML);
                        $("#commonModal").modal('hide');
                    }
                })
            }
        });

        $('#cost').trigger('keyup');
    </script>
<?php $__env->stopPush(); ?>

<?php $__env->startSection('content'); ?>
    <div class="row">
        <!-- [ sample-page ] start -->
        <div class="col-sm-12">
            <?php echo e(Form::open(['method' => 'post', 'id' => 'frmTarget', 'enctype' => 'multipart/form-data', 'class' => 'needs-validation', 'novalidate'])); ?>

            <div class="row">
                <div class="col-lg-6">
                    <div class="row">
                        <div class="col-lg-6 col-md-6">
                            <h5><?php echo e(__('Main Informations')); ?></h5>
                            <div class="card shadow-none border border-primary">
                                <div class="card-body ">
                                    <div class="form-group">
                                        <?php echo e(Form::label('name', __('Name'), ['class' => 'form-label'])); ?>

                                        <?php if (isset($component)) { $__componentOriginaleab1765d328ab3f8835fc5d78676a070 = $component; } ?>
<?php if (isset($attributes)) { $__attributesOriginaleab1765d328ab3f8835fc5d78676a070 = $attributes; } ?>
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'components.required','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
<?php $component->withName('required'); ?>
<?php if ($component->shouldRender()): ?>
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
<?php endif; ?>
<?php $component->withAttributes([]); ?> <?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__attributesOriginaleab1765d328ab3f8835fc5d78676a070)): ?>
<?php $attributes = $__attributesOriginaleab1765d328ab3f8835fc5d78676a070; ?>
<?php unset($__attributesOriginaleab1765d328ab3f8835fc5d78676a070); ?>
<?php endif; ?>
<?php if (isset($__componentOriginaleab1765d328ab3f8835fc5d78676a070)): ?>
<?php $component = $__componentOriginaleab1765d328ab3f8835fc5d78676a070; ?>
<?php unset($__componentOriginaleab1765d328ab3f8835fc5d78676a070); ?>
<?php endif; ?>
                                        <?php echo e(Form::text('name', null, ['class' => 'form-control', 'placeholder' => __('Enter Name'), 'required' => 'required'])); ?>

                                    </div>
                                    <div class="form-group">
                                        <?php echo e(Form::label('product_categorie', __('Product Categories'), ['class' => 'form-label'])); ?>

                                        <?php echo Form::select('product_categorie[]', $product_categorie, null, [
                                            'class' => 'form-control multi-select',
                                            'id' => 'note1',
                                            'data-toggle' => 'select',
                                            'multiple',
                                        ]); ?>

                                        <?php if(count($product_categorie) == 0): ?>
                                            <?php echo e(__('Add product category')); ?>

                                            <a href="<?php echo e(route('product_categorie.index')); ?>">
                                                <?php echo e(__('Click here')); ?>

                                            </a>
                                        <?php endif; ?>
                                    </div>
                                    <div class="form-group">
                                        <?php echo e(Form::label('SKU', __('SKU'), ['class' => 'form-label'])); ?>

                                        <?php echo e(Form::text('SKU', null, ['class' => 'form-control', 'placeholder' => __('Enter SKU')])); ?>

                                    </div>
                                    <div class="form-group">
                                        <?php echo e(Form::label('product_tax', __('Product Tax'), ['class' => 'form-label'])); ?>

                                        <?php echo e(Form::select('product_tax[]', $product_tax, null, ['class' => 'form-control multi-select', 'id' => 'note2', 'data-toggle' => 'select', 'multiple'])); ?>

                                        <?php if(count($product_tax) == 0): ?>
                                            <?php echo e(__('Add product tax')); ?>

                                            <a href="<?php echo e(route('product_tax.index')); ?>">
                                                <?php echo e(__('Click here')); ?>

                                            </a>
                                        <?php endif; ?>
                                    </div>
                                    <div class="form-group proprice">
                                        <div class="row gy-4">
                                            <div class="col-md-6">
                                                <?php echo e(Form::label('price', __('Price'), ['class' => 'form-label'])); ?>

                                                <?php if (isset($component)) { $__componentOriginaleab1765d328ab3f8835fc5d78676a070 = $component; } ?>
<?php if (isset($attributes)) { $__attributesOriginaleab1765d328ab3f8835fc5d78676a070 = $attributes; } ?>
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'components.required','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
<?php $component->withName('required'); ?>
<?php if ($component->shouldRender()): ?>
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
<?php endif; ?>
<?php $component->withAttributes([]); ?> <?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__attributesOriginaleab1765d328ab3f8835fc5d78676a070)): ?>
<?php $attributes = $__attributesOriginaleab1765d328ab3f8835fc5d78676a070; ?>
<?php unset($__attributesOriginaleab1765d328ab3f8835fc5d78676a070); ?>
<?php endif; ?>
<?php if (isset($__componentOriginaleab1765d328ab3f8835fc5d78676a070)): ?>
<?php $component = $__componentOriginaleab1765d328ab3f8835fc5d78676a070; ?>
<?php unset($__componentOriginaleab1765d328ab3f8835fc5d78676a070); ?>
<?php endif; ?>
                                                <?php echo e(Form::number('price', null, ['step' => 'any', 'class' => 'form-control add-required', 'placeholder' => 'Enter Price'])); ?>

                                            </div>
                                            <div class="col-md-6">
                                                <?php echo e(Form::label('quantity', __('Stock Quantity'), ['class' => 'form-label'])); ?>

                                                <?php if (isset($component)) { $__componentOriginaleab1765d328ab3f8835fc5d78676a070 = $component; } ?>
<?php if (isset($attributes)) { $__attributesOriginaleab1765d328ab3f8835fc5d78676a070 = $attributes; } ?>
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'components.required','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
<?php $component->withName('required'); ?>
<?php if ($component->shouldRender()): ?>
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
<?php endif; ?>
<?php $component->withAttributes([]); ?> <?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__attributesOriginaleab1765d328ab3f8835fc5d78676a070)): ?>
<?php $attributes = $__attributesOriginaleab1765d328ab3f8835fc5d78676a070; ?>
<?php unset($__attributesOriginaleab1765d328ab3f8835fc5d78676a070); ?>
<?php endif; ?>
<?php if (isset($__componentOriginaleab1765d328ab3f8835fc5d78676a070)): ?>
<?php $component = $__componentOriginaleab1765d328ab3f8835fc5d78676a070; ?>
<?php unset($__componentOriginaleab1765d328ab3f8835fc5d78676a070); ?>
<?php endif; ?>
                                                <?php echo e(Form::text('quantity', null, ['class' => 'form-control add-required', 'placeholder' => __('Enter Stock Quantity')])); ?>

                                            </div>
                                        </div>
                                    </div>
                                    <div class="form-group mb-0">
                                        <label for="downloadable_prodcut"
                                            class="form-label font-bold-700"><?php echo e(__('Downloadable Product')); ?></label>
                                        <input type="file" name="downloadable_prodcut" id="downloadable_prodcut"
                                            class="custom-input-file form-control"
                                            onchange="document.getElementById('down_product').src = window.URL.createObjectURL(this.files[0])">
                                        <img id="down_product" src="" width="20%" class="mt-2" />
                                    </div>
                                    </form>
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-6 col-md-6">
                            <h5><?php echo e(__('Custom Fields')); ?></h5>
                            <div class="card shadow-none border border-primary">
                                <div class="card-body">
                                    <div class="form-group">
                                        <?php echo e(Form::label('custom_field_1', __('Custom Field'), ['class' => 'form-label'])); ?>

                                        <?php echo e(Form::text('custom_field_1', null, ['class' => 'form-control', 'placeholder' => __('Enter Custom Field')])); ?>

                                    </div>
                                    <div class="form-group">
                                        <?php echo e(Form::label('custom_value_1', __('Custom Value'), ['class' => 'form-label'])); ?>

                                        <?php echo e(Form::text('custom_value_1', null, ['class' => 'form-control', 'placeholder' => __('Enter Custom Value')])); ?>

                                    </div>
                                    <div class="form-group">
                                        <?php echo e(Form::label('custom_field_2', __('Custom Field'), ['class' => 'form-label'])); ?>

                                        <?php echo e(Form::text('custom_field_2', null, ['class' => 'form-control', 'placeholder' => __('Enter Custom Field')])); ?>

                                    </div>
                                    <div class="form-group">
                                        <?php echo e(Form::label('custom_value_2', __('Custom Value'), ['class' => 'form-label'])); ?>

                                        <?php echo e(Form::text('custom_value_2', null, ['class' => 'form-control', 'placeholder' => __('Enter Custom Value')])); ?>

                                    </div>
                                    <div class="form-group">
                                        <?php echo e(Form::label('custom_field_3', __('Custom Field'), ['class' => 'form-label'])); ?>

                                        <?php echo e(Form::text('custom_field_3', null, ['class' => 'form-control', 'placeholder' => __('Enter Custom Field')])); ?>

                                    </div>
                                    <div class="form-group">
                                        <?php echo e(Form::label('custom_value_3', __('Custom Value'), ['class' => 'form-label'])); ?>

                                        <?php echo e(Form::text('custom_value_3', null, ['class' => 'form-control', 'placeholder' => __('Enter Custom Value')])); ?>

                                    </div>
                                    <div class="form-group">
                                        <?php echo e(Form::label('custom_field_4', __('Custom Field'), ['class' => 'form-label'])); ?>

                                        <?php echo e(Form::text('custom_field_4', null, ['class' => 'form-control', 'placeholder' => __('Enter Custom Field')])); ?>

                                    </div>
                                    <div class="form-group">
                                        <?php echo e(Form::label('custom_value_4', __('Custom Value'), ['class' => 'form-label'])); ?>

                                        <?php echo e(Form::text('custom_value_4', null, ['class' => 'form-control', 'placeholder' => __('Enter Custom Value')])); ?>

                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-12">
                            <div class="row">
                                <div class="card shadow-none border border-primary">
                                    <div class="card-body">
                                        <div class="col-12">
                                            <div class="form-group mb-0">
                                                <div class="row gy-3">
                                                    <div class="col-lg-6">
                                                        <div class="form-check form-switch custom-switch-v1">
                                                            <input type="checkbox" class="form-check-input input-primary"
                                                                name="product_display" id="product_display" checked="">
                                                            <label class="form-check-label"
                                                                for="product_display"><?php echo e(__('Product Display')); ?></label>
                                                        </div>
                                                        <?php $__errorArgs = ['product_display'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?>
                                                            <span class="invalid-product_display" role="alert">
                                                                <strong class="text-danger"><?php echo e($message); ?></strong>
                                                            </span>
                                                        <?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
                                                    </div>
                                                    <div class="col-lg-6">
                                                        <?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('Create Variants')): ?>
                                                            <div class="form-check form-switch custom-switch-v1">
                                                                <input type="checkbox" class="form-check-input input-primary"
                                                                    name="enable_product_variant" id="enable_product_variant">
                                                                <label class="form-check-label"
                                                                    for="enable_product_variant"><?php echo e(__('Display Variants')); ?></label>
                                                            </div>
                                                        <?php endif; ?>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div id="productVariant" class="col-md-12">
                        <div class="row">
                            <div class="col-12">
                                <div class="card my-3 border border-primary">
                                    <div class="card-header">
                                        <div class="row flex-grow-1">
                                            <div class="col-md d-flex align-items-center">
                                                <h5 class="card-header-title">
                                                    <?php echo e(__('Product Variants')); ?></h5>
                                            </div>
                                            <div class="col-md-auto">
                                                <?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('Create Variants')): ?>
                                                    <button type="button" class="btn btn-sm btn-primary get-variants"><i
                                                            class="fas fa-plus"></i>
                                                        <?php echo e(__('Add Variant')); ?></button>
                                                <?php endif; ?>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="card-body">
                                        <input type="hidden" id="hiddenVariantOptions" name="hiddenVariantOptions"
                                            value="{}">
                                        <div class="variant-table">
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="col-xl-3 col-lg-6 col-md-6">
                    <h5><?php echo e(__('Product Image')); ?></h5>
                    <div class="card shadow-none border border-primary">
                        <div class="card-body">
                            <form>
                                <div class="form-group">
                                    <label for="is_cover_image" class="form-label"><?php echo e(__('Upload Cover Image')); ?></label>
                                    <input type="file" name="is_cover_image" id="is_cover_image"
                                        class="form-control custom-input-file"
                                        onchange="document.getElementById('coverImg').src = window.URL.createObjectURL(this.files[0])"
                                        multiple>
                                    <img id="coverImg" src="" width="20%" class="mt-2" />
                                </div>
                                <div class="form-group">
                                    <?php echo e(Form::label('sub_images', __('Upload Product Images'), ['class' => 'col-form-label'])); ?>

                                    <div class="dropzone dropzone-multiple" data-toggle="dropzone1"
                                        data-dropzone-url="http://" data-dropzone-multiple>
                                        <div class="fallback">
                                            <div class="custom-file">
                                                <input type="file" class="custom-file-input" id="dropzone-1"
                                                    name="file" multiple>
                                                <label class="custom-file-label"
                                                    for="customFileUpload"><?php echo e(__('Choose file')); ?></label>
                                            </div>
                                        </div>
                                        <ul
                                            class="dz-preview dz-preview-multiple list-group list-group-lg list-group-flush">
                                            <li class="list-group-item px-0">
                                                <div class="row align-items-center">
                                                    <div class="col-auto">
                                                        <div class="avatar">
                                                            <img class="rounded" src="" alt="Image placeholder"
                                                                data-dz-thumbnail>
                                                        </div>
                                                    </div>
                                                    <div class="col">
                                                        <h6 class="text-sm mb-1" data-dz-name>...</h6>
                                                        <p class="small text-muted mb-0" data-dz-size></p>
                                                    </div>
                                                    <div class="col-auto">
                                                        <a href="#" class="dropdown-item" data-dz-remove>
                                                            <i class="fas fa-trash-alt"></i>
                                                        </a>
                                                    </div>
                                                </div>
                                            </li>
                                        </ul>
                                    </div>
                                </div>
                            </form>
                        </div>
                    </div>
                </div>
                <div class="col-xl-3 col-lg-6 col-md-6">
                    <h5><?php echo e(__('About product')); ?></h5>
                    <div class="card shadow-none border border-primary">
                        <div class="card-body">
                            <div class="form-group">
                                <?php echo e(Form::label('description', __('Product Description'), ['class' => 'form-label'])); ?>

                                <?php echo e(Form::textarea('description', null, ['class' => 'form-control summernote', 'id' => 'classic-editor', 'rows' => 2, 'placeholder' => __('Product Description')])); ?>

                            </div>
                        </div>
                    </div>
                </div>
                <input type="submit" id="create-product" value="create" class="btn btn-primary text-white d-none">
            </div>

            <?php echo e(Form::close()); ?>

        </div>
        <!-- [ sample-page ] end -->
    </div>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('layouts.admin', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/mipedido/web/mipedido.app/public_html/resources/views/product/create.blade.php ENDPATH**/ ?>