VaKeR CYBER ARMY
Logo of a company Server : Apache
System : Linux host44.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
User : vapecompany ( 2719)
PHP Version : 7.4.33
Disable Function : NONE
Directory :  /home/vapecompany/demo.vapecompany.com.bd/storage/framework/views/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/vapecompany/demo.vapecompany.com.bd/storage/framework/views/f23fc3c728003f9e69c1c7443d7430e5aa916987.php
<?php $__env->startSection('content'); ?>
      
        <!-- ============================================================== -->
        <!-- Page wrapper  -->
        <!-- ============================================================== -->
        <div class="page-wrapper">
            <!-- ============================================================== -->
            <!-- Bread crumb and right sidebar toggle -->
            <!-- ============================================================== -->
            <div class="page-breadcrumb">
                <div class="row">
                    <div class="col-5 align-self-center">
                        <h4 class="page-title">Category Edit</h4>
                        <div class="d-flex align-items-center">
                            <nav aria-label="breadcrumb">
                                <ol class="breadcrumb">
                                    <li class="breadcrumb-item"><a href="#">Home</a></li>
                                    <li class="breadcrumb-item active" aria-current="page">Category</li>
                                </ol>
                            </nav>
                        </div>
                    </div>
                    
                </div>
            </div>
            <!-- ============================================================== -->
            <!-- End Bread crumb and right sidebar toggle -->
            <!-- ============================================================== -->
            <!-- ============================================================== -->
            <!-- Container fluid  -->
            <!-- ============================================================== -->
            <div class="container-fluid">
                <!-- ============================================================== -->
                <!-- Start Page Content -->
                <!-- ============================================================== -->
                <div class="row">
                    <div class="col-12">
                        
                        <div class="card">
                            <div class="card-body">
                                <form id="addBrand">
                                    <?php echo csrf_field(); ?>
                                    <h4 class="card-title">Edit Category</h4>
                                     <?php echo $__env->make('backend.layout.verror_message', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                                    <div class="form-group row">
                                        <label for="address" class="col-sm-3 text-right control-label col-form-label">Parent Category</label>
                                        <div class="col-sm-9 error_select">
                                            <select name="brand" class="form-control select2">
                                                <option value="">Select</option> 
                                                <?php $__currentLoopData = $categories; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $category): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                                                   <option value="<?php echo e($category->category_id); ?>"><?php echo e($category->category_name); ?></option>
                                                <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>   
                                                   
                                            </select>
                                        </div>
                                    </div>
                                    <div class="form-group row">
                                        <label for="com1" class="col-sm-3 text-right control-label col-form-label">Category Name</label>
                                        <div class="col-sm-6">
                                            <input type="hidden" name="category_id" value="<?php echo e($category->category_id); ?>">
                                            <input name="category_name" type="text" class="form-control" value="<?php echo e($category->category_name); ?>" id="com1" placeholder="Category Name">
                                        </div>
                                    </div>
                                    <div class="form-group row">
                                        <label for="product_price" class="col-sm-3 text-right control-label col-form-label"></label>
                                        <div class="col-sm-9">
                                            <div class="custom-control custom-checkbox" id="">
                                                <input value="1" name="status" <?php if($category->status == 1): ?> checked="" <?php endif; ?> type="checkbox" class="custom-control-input" id="status" >
                                                <label class="custom-control-label" for="status">Staus</label>
                                            </div>
                                        </div>
                                    </div>
                                   <div class="form-group mb-0 text-right">
                                        <button type="submit" class="btn btn-info waves-effect waves-light">Save</button>
                                        <button type="submit" class="btn btn-dark waves-effect waves-light">Cancel</button>
                                    </div>
                                   
                                  </form> 
                                    
                                </div>
                        </div>
                      
                        
                    </div>
                </div>
                <!-- ============================================================== -->
                <!-- End PAge Content -->
                <!-- ============================================================== -->
                <!-- ============================================================== -->
                <!-- Right sidebar -->
                <!-- ============================================================== -->
                <!-- .right-sidebar -->
                <!-- ============================================================== -->
                <!-- End Right sidebar -->
                <!-- ============================================================== -->
            </div>
            <!-- ============================================================== -->
            <!-- End Container fluid  -->
            <?php $__env->stopSection(); ?>
             <?php $__env->startSection('script'); ?>
                <script src="<?php echo e(url('public/backend/js/jquery.validate.min.js')); ?>"></script>
                <script>
                    jQuery(document).ready(function(){
                        
                      
                      $("#addBrand").validate({
                                    
                        rules:
                       {
                            category_name: {
                                required: true,
                                maxlength: 150,
                            }, 
                                           
                           
                       },
                        submitHandler: submitForm
                      });
                      
                      
                       function submitForm()
                        {
                            
                            
                            var data = $("#addBrand").serialize();
                                
                            $.ajax({
                    
                                type : 'POST',
                                url  : "<?php echo e(url('admin/edit_category')); ?>",
                                data : data,
                                dataType : 'json',
                                success :  function (data)
                                {
                                    //console.log(data);
                                    if(data.errors=='0'){
                                        $('.alert-success').show();
                                        $('.alert-danger').hide();
                                        $('.alert-success').append('<p>'+data.success+'</p>');
                                        window.location="<?php echo e(url('all_category')); ?>";
                                        
                                    }else{
                                         var val="";
                                        $.each(data.errors, function(key, value){
                                            $('.alert-danger').show();
                                            $('.alert-success').hide();
                                            val+= '<p>'+value+'</p>';
                                            
                                        });
                                        $('.alert-danger').html(val);
                                    }
                                    
                                },error: function(response) {
                                    //console.log(response);
                                }
                            });
                            return false;
                        }
                      
                      
                        
                    });
                </script>
            <?php $__env->stopSection(); ?>
<?php echo $__env->make('backend.layout.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/vapecompany/Demo.vapecompany.com.bd/resources/views/backend/category/edit.blade.php ENDPATH**/ ?>

VaKeR 2022