Server : nginx/1.18.0 System : Linux localhost 6.14.3-x86_64-linode168 #1 SMP PREEMPT_DYNAMIC Mon Apr 21 19:47:55 EDT 2025 x86_64 User : www-data ( 33) PHP Version : 8.0.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /var/www/ecommerce/storage/framework/views/ |
<?php $__env->startSection('main-content'); ?>
<div class="card">
<h5 class="card-header">Edit Product</h5>
<div class="card-body">
<form method="post" action="<?php echo e(route('product.update', $product->id)); ?>">
<?php echo csrf_field(); ?>
<?php echo method_field('PATCH'); ?>
<div class="form-group">
<label for="inputTitle" class="col-form-label">Title <span class="text-danger">*</span></label>
<input id="inputTitle" type="text" name="title" placeholder="Enter title"
value="<?php echo e($product->title); ?>" class="form-control">
<?php $__errorArgs = ['title'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?>
<span class="text-danger"><?php echo e($message); ?></span>
<?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
</div>
<div class="form-group">
<label for="summary" class="col-form-label">Summary <span class="text-danger">*</span></label>
<textarea class="form-control" id="summary" name="summary"><?php echo e($product->summary); ?></textarea>
<?php $__errorArgs = ['summary'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?>
<span class="text-danger"><?php echo e($message); ?></span>
<?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
</div>
<div class="form-group">
<label for="description" class="col-form-label">Description</label>
<textarea class="form-control" id="description"
name="description"><?php echo e($product->description); ?></textarea>
<?php $__errorArgs = ['description'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?>
<span class="text-danger"><?php echo e($message); ?></span>
<?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
</div>
<div class="form-group">
<label for="is_featured">Is Featured</label><br>
<input type="checkbox" name='is_featured' id='is_featured' value='<?php echo e($product->is_featured); ?>'
<?php echo e($product->is_featured ? 'checked' : ''); ?>> Yes
</div>
<div class="form-group">
<label for="cat_id">Category <span class="text-danger">*</span></label>
<select name="cat_id" id="cat_id" class="form-control">
<option value="">--Select any category--</option>
<?php $__currentLoopData = $categories; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $cat_data): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<option value='<?php echo e($cat_data->id); ?>'
<?php echo e($product->cat_id == $cat_data->id ? 'selected' : ''); ?>>
<?php echo e($cat_data->title); ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</select>
</div>
<?php
$sub_cat_info = DB::table('categories')
->select('title')
->where('id', $product->child_cat_id)
->get();
// dd($sub_cat_info);
?>
<div class="form-group <?php echo e($product->child_cat_id ? '' : 'd-none'); ?>" id="child_cat_div">
<label for="child_cat_id">Sub Category</label>
<select name="child_cat_id" id="child_cat_id" class="form-control">
<option value="">--Select any sub category--</option>
</select>
</div>
<div class="form-group">
<label for="price" class="col-form-label">Price(<?php echo config('shop.currency'); ?>) <span
class="text-danger">*</span></label>
<input id="price" type="number" name="price" placeholder="Enter price" value="<?php echo e($product->price); ?>"
class="form-control">
<?php $__errorArgs = ['price'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?>
<span class="text-danger"><?php echo e($message); ?></span>
<?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
</div>
<div class="form-group">
<label for="discount" class="col-form-label">Discount(%)</label>
<input id="discount" type="number" name="discount" min="0" max="100" placeholder="Enter discount"
value="<?php echo e($product->discount); ?>" class="form-control">
<?php $__errorArgs = ['discount'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?>
<span class="text-danger"><?php echo e($message); ?></span>
<?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
</div>
<div class="form-group">
<label for="brand_id">Vendor</label>
<select name="brand_id" class="form-control">
<option value="">--Select Vendor--</option>
<?php $__currentLoopData = $brands; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $brand): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<option value="<?php echo e($brand->id); ?>"
<?php echo e($product->brand_id == $brand->id ? 'selected' : ''); ?>>
<?php echo e($brand->title); ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</select>
</div>
<div class="form-group">
<label for="condition">Condition <span class="text-danger">*</span></label>
<select name="condition" class="form-control">
<option value="">--Select Condition--</option>
<option value="default" <?php echo e($product->condition == 'default' ? 'selected' : ''); ?>>Default</option>
<option value="new" <?php echo e($product->condition == 'new' ? 'selected' : ''); ?>>New</option>
<option value="hot" <?php echo e($product->condition == 'hot' ? 'selected' : ''); ?>>Hot</option>
</select>
</div>
<div class="form-group">
<label for="stock">Quantity <span class="text-danger">*</span></label>
<input id="quantity" type="number" name="stock" min="0" placeholder="Enter quantity"
value="<?php echo e($product->stock); ?>" class="form-control">
<?php $__errorArgs = ['stock'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?>
<span class="text-danger"><?php echo e($message); ?></span>
<?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
</div>
<div class="form-group">
<label for="stock">Notify when Quantity Under</label>
<input id="notify_min_stock" type="number" name="notify_min_stock" min="0" placeholder="Enter Mininum Notify quantity"
value="<?php echo e($product->notify_min_stock); ?>" class="form-control">
<?php $__errorArgs = ['notify_min_stock'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?>
<span class="text-danger"><?php echo e($message); ?></span>
<?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
</div>
<div class="form-group">
<label for="inputPhoto" class="col-form-label">Photo <span class="text-danger">*</span></label>
<div class="input-group">
<span class="input-group-btn">
<a id="lfm" data-input="thumbnail" data-preview="holder" class="btn btn-primary text-white">
<i class="fas fa-image"></i> Choose
</a>
</span>
<input id="thumbnail" class="form-control" type="text" name="photo"
value="<?php echo e($product->photo); ?>">
</div>
<div id="holder" style="margin-top:15px;max-height:100px;"></div>
<?php $__errorArgs = ['photo'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?>
<span class="text-danger"><?php echo e($message); ?></span>
<?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
</div>
<div class="form-group">
<label for="status" class="col-form-label">Status <span class="text-danger">*</span></label>
<select name="status" class="form-control">
<option value="active" <?php echo e($product->status == 'active' ? 'selected' : ''); ?>>Active</option>
<option value="inactive" <?php echo e($product->status == 'inactive' ? 'selected' : ''); ?>>Inactive</option>
</select>
<?php $__errorArgs = ['status'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?>
<span class="text-danger"><?php echo e($message); ?></span>
<?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
</div>
<div class="form-group">
<label for="payment_method_id" class="col-form-label">Payment Method</label>
<select name="payment_method_id" class="form-control">
<option value="">Select</option>
<?php $__currentLoopData = $payment_methods; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $payment_method): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<option <?php echo $product->payment_method_id === $payment_method->id ? 'selected' : ''; ?> value="<?php echo $payment_method->id; ?>"><?php echo $payment_method->name; ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</select>
<?php $__errorArgs = ['payment_method_id'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?>
<span class="text-danger"><?php echo e($message); ?></span>
<?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
</div>
<div class="form-group mb-3">
<button class="btn btn-success" type="submit">Update</button>
</div>
</form>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php $__env->startPush('styles'); ?>
<link rel="stylesheet" href="<?php echo e(asset('backend/summernote/summernote.min.css')); ?>">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.13.1/css/bootstrap-select.css" />
<?php $__env->stopPush(); ?>
<?php $__env->startPush('scripts'); ?>
<script src="<?php echo e(asset('/vendor/laravel-filemanager/js/stand-alone-button.js')); ?>"></script>
<script src="<?php echo e(asset('backend/summernote/summernote.min.js')); ?>"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.13.1/js/bootstrap-select.min.js"></script>
<script>
$(function() {
$('#lfm').filemanager('file', {
prefix: "<?php echo route('unisharp.lfm.show'); ?>"
});
$('#summary').summernote({
placeholder: "Write short description.....",
tabsize: 2,
height: 150
});
$('#description').summernote({
placeholder: "Write detail Description.....",
tabsize: 2,
height: 150
});
var child_cat_id = '<?php echo e($product->child_cat_id); ?>';
$('#cat_id').change(function() {
var cat_id = $(this).val();
if (cat_id != null) {
// ajax call
$.ajax({
url: "/admin/category/" + cat_id + "/child",
type: "POST",
data: {
_token: "<?php echo e(csrf_token()); ?>"
},
success: function(response) {
if (typeof(response) != 'object') {
response = $.parseJSON(response);
}
var html_option = "<option value=''>--Select any one--</option>";
if (response.status) {
var data = response.data;
if (response.data) {
$('#child_cat_div').removeClass('d-none');
$.each(data, function(id, title) {
html_option += "<option value='" + id + "' " + (
child_cat_id == id ? 'selected ' : '') +
">" +
title + "</option>";
});
} else {
console.log('no response data');
}
} else {
$('#child_cat_div').addClass('d-none');
}
$('#child_cat_id').html(html_option);
}
});
} else {
}
});
if (child_cat_id != null) {
$('#cat_id').change();
}
});
</script>
<?php $__env->stopPush(); ?>
<?php echo $__env->make('backend.layouts.base', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/ecommerce/resources/views/backend/product/edit.blade.php ENDPATH**/ ?>