!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/portfolio.picotech.app/public_html/storage/framework/views/   drwxr-xr-x
Free 28.32 GB of 117.98 GB (24.01%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     66502d0b440bc5f0baf5e824b698bc5c.php (8.7 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?> <?php echo e(trans('admin.services')); ?>   <?php $__env->stopSection(); ?>

<?php $__env->startSection('extra-css'); ?>
    <link rel="stylesheet" href="<?php echo e(asset('plugins/datatables-bs4/css/dataTables.bootstrap4.min.css')); ?>">
    <link rel="stylesheet" href="<?php echo e(asset('plugins/datatables-responsive/css/responsive.bootstrap4.min.css')); ?>">
    <link href="https://cdn.jsdelivr.net/npm/summernote/dist/summernote-bs4.min.css" rel="stylesheet">
    <style>
        .feature-input {
        position: relative;
        }
        .feature-input .delete-feature {
        position: absolute;
        top: 8px;
        right: 5px;
        z-index: 1;
        }
        .add-btn i{
        font-size: 16px !important;
        }
        .add-btn{
            margin-top: 0px !important;
        margin-bottom: 0;
        padding: 0.5rem 1rem !important;
        }
        .add-features{
            padding-top: 8px !important;
        }
    </style>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
<section class="content">
    <div class="row">
        <div class="col-12 mx-auto col-sm-10 mt-3">
            <div class="card">
                <div class="card-header">
                    <h2 class="card-title"> <?php echo e(trans('admin.services')); ?>  </h2>
                </div>
                <form method="post" role="form" id="servicesForm" action="<?php echo e(route('admin.theme.services.store')); ?>" enctype="multipart/form-data">
                    <?php echo csrf_field(); ?>
                        <div class="card-body">

                            <?php
                            $services 
=json_decode(get_settings('services'));
                            
?>
                             <div class="form-group">
                                <label for="title"><?php echo e(trans('admin.title')); ?></label>
                                <input value="<?php echo e(isset($services)?$services->title:''); ?>" type="text" name="title" class="form-control" placeholder="<?php echo e(trans('admin.title')); ?>">
                            </div>
                            <div class="form-group">
                                <label for="sub_title"><?php echo e(trans('admin.sub_title')); ?></label>
                                <input value="<?php echo e(isset($services)?$services->sub_title:''); ?>" type="text" name="sub_title" class="form-control" placeholder="<?php echo e(trans('admin.sub_title')); ?>">
                            </div>
                            <div class="add-team text-right">
                                <button type="button" class="btn btn-primary add-input" id="add-input"><i class="fa fa-plus"></i></button>
                            </div>
                        <div class="input-fields" id="input-fields">
                            <?php if(isset($services)?$services->service_data:''): ?>
                                
                            <?php $__currentLoopData $services->service_data$__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $service): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                            <div class="row input-content mt-4" >
                                <div class="col-lg-12 text-right">
                                    <button class="delete-fields btn btn-sm btn-danger"><i class="fa fa-times"></i></button>
                                </div>
                                <div class="col-lg-6">
                                    <div class="form-group">
                                        <label for="name"><?php echo e(trans('admin.name')); ?></label>
                                        <input value="<?php echo e(isset($service)?$service->name:''); ?>" type="text" name="name[]" class="form-control" placeholder="<?php echo e(trans('admin.name')); ?>">
                                    </div>
                                </div>                           
                                <div class="col-lg-6">
                                    <div class="form-group">
                                        <label for="image"><?php echo e(trans('admin.image')); ?></label>
                                        <input type="hidden" name="pre_image[]" value="<?php echo e(isset($service)?$service->image:''); ?>">
                                        <input value="" type="file" name="image[]" class="form-control" placeholder="<?php echo e(trans('admin.image')); ?>">
                                    </div>
                                </div>
                                <div class="col-lg-12">
                                    <div class="form-group">
                                        <label for="description"><?php echo app('translator')->get('admin.description'); ?></label>
                                        <textarea name="description[]" id="description" class="form-control description"
                                                  placeholder="<?php echo e(trans('admin.description')); ?>"><?php echo e(isset($service)?$service->description:''); ?></textarea>
                                    </div>
                                </div>
                            </div>
                            <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>
                            <?php endif; ?>
                    </div>
                    <div class="card-footer">
                        <button type="submit" class="btn btn-primary"><?php echo e(trans('admin.submit')); ?></button>
                    </div>
                </form>
            </div>
        </div>
    </div>
    </div>
</section>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('extra-scripts'); ?>
    <script src="<?php echo e(asset('plugins/datatables/jquery.dataTables.min.js')); ?>"></script>
    <script src="<?php echo e(asset('plugins/datatables-bs4/js/dataTables.bootstrap4.min.js')); ?>"></script>
    <script src="<?php echo e(asset('plugins/datatables-responsive/js/dataTables.responsive.min.js')); ?>"></script>
    <script src="<?php echo e(asset('plugins/datatables-responsive/js/responsive.bootstrap4.min.js')); ?>"></script>
<script src="https://cdn.jsdelivr.net/npm/summernote/dist/summernote-bs4.min.js"></script>
    <script>
        $(document).ready(function() {
$('#add-input').click(function() {
    var inputFields = `
    <div class="row input-content mt-4" >
                                <div class="col-lg-12 text-right">
                                    <button class="delete-fields btn btn-sm btn-danger"><i class="fa fa-times"></i></button>
                                </div>
                                <div class="col-lg-6">
                                    <div class="form-group">
                                        <label for="name"><?php echo e(trans('admin.name')); ?></label>
                                        <input value="" type="text" name="name[]" class="form-control" placeholder="<?php echo e(trans('admin.name')); ?>">
                                    </div>
                                </div>                           
                                <div class="col-lg-6">
                                    <div class="form-group">
                                        <label for="image"><?php echo e(trans('admin.image')); ?></label>
                                        <input value="" type="file" name="image[]" class="form-control" placeholder="<?php echo e(trans('admin.image')); ?>">
                                    </div>
                                </div>
                                <div class="col-lg-12">
                                    <div class="form-group">
                                        <label for="description"><?php echo app('translator')->get('admin.description'); ?></label>
                                        <textarea name="description[]" id="description" class="form-control description"
                                                  placeholder="<?php echo e(trans('admin.description')); ?>"></textarea>
                                    </div>
                                </div>
                            </div>
    `;
    $('#input-fields').append(inputFields); 
    $('.description').summernote();
});



        $('.description').summernote();



    $(document).on('click', '.delete-fields', function() {
        $(this).closest('.input-content').remove(); 
    });
});

    </script>
<?php $__env->stopSection(); ?>


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

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0051 ]--