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


Viewing file:     684f682670e7c528d98711db77fa8d92.php (13.15 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title','Update Step'); ?>

<?php $__env->startSection('extra-css'); ?>

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

<?php $__env->startSection('content'); ?>
    <!-- Main content -->
    <section class="content">
        <div class="row">
            <div class="col-12">
                <div class="card">
                    <div class="card-header">
                        <h2 class="card-title"><?php echo e(trans('Update Step')); ?></h2>
                        <a class="btn btn-info float-right" href="<?php echo e(route('admin.step.index')); ?>"><?php echo app('translator')->get('admin.form.button.back'); ?></a>
                    </div>
                    <!-- /.card-header -->
                    <!-- form start -->
                    <form method="post" role="form" enctype="multipart/form-data" id="planForm" action="<?php echo e(route('admin.step.update',[$step])); ?>">
                        <?php echo csrf_field(); ?>
                        <?php echo method_field('put'); ?>
                        <div class="card-body">
                            <?php if(isset($step) && $step->design=='design_one'): ?>
                                <?php echo $__env->make('admin.step.partial.design_one'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
                            <?php elseif(isset($step) && $step->design=='design_two'  || $step->design=='design_eight'): ?>
                                <?php echo $__env->make('admin.step.partial.design_two'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
                            <?php elseif(isset($step) && $step->design=='design_three'): ?>
                                <?php echo $__env->make('admin.step.partial.design_three'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
                            <?php elseif(isset($step) && ($step->design=='design_six' || $step->design=='design_four')): ?>
                                <?php echo $__env->make('admin.step.partial.design_six'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
                            <?php elseif(isset($step) && $step->design=='design_five'): ?>
                                <?php echo $__env->make('admin.step.partial.design_five'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
                            <?php elseif(isset($step) && $step->design=='design_seven'): ?>
                                <?php echo $__env->make('admin.step.partial.design_seven'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
                            <?php elseif(isset($step) && $step->design=='design_nine'): ?>
                                <?php echo $__env->make('admin.step.partial.design_nine'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
                            <?php endif; ?>

                        </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>
        <!-- /.col -->
        </div>
        <!-- /.row -->
    </section>
    <!-- /.content -->

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

<?php $__env->startSection('extra-scripts'); ?>
    <script src="<?php echo e(asset('plugins/jquery-validation/jquery.validate.min.js')); ?>"></script>


    <!-- JS For Checkbox !-->
    <script>
        "use strict";
        let checkbox_counter=0;
        $(document).on('click', '.add_checkbox', function(e){
            let html='';
            checkbox_counter++;

            html=`<div class="card mt-2" id="checkbox_append_${checkbox_counter}">
                    <div class="card-body">
                        <button class="btn-danger btn-sm float-right delete_checkbox_append" data-id="${checkbox_counter}" type="button">  <i class="fa fa-trash"></i>  </button>
                        <div class="row">
                            <div class="form-group col-md-6">
                                <label for=""><?php echo e(trans('Title')); ?> <span class="text-danger">*</span></label>
                                <input type="text" class="form-control" name="checkbox_title[]">
                            </div>

                            <div class="form-group col-md-6">
                                 <label for=""><?php echo e(trans('Value')); ?></label>
                                 <input type="text" class="form-control" name="checkbox_value[]">
                            </div>
                            <div class="form-group col-md-6">
                                 <label for=""><?php echo e(trans('Description')); ?></label>
                                 <input type="text" class="form-control" name="checkbox_des_value[]">
                            </div>

                            <div class="form-group col-md-6 ">
                                <label for=""><?php echo e(trans('Image')); ?></label>
                                <input type="file" class="form-control p-1" name="checkbox_image[]">
                            </div>
                        </div>
                    </div>
                </div>`;


            $('.checkbox-section').append(html);
        });

        $(document).on('click', '.delete_checkbox_append', function (e){
            const id=$(this).attr('data-id');

            $('#checkbox_append_'+id).remove();
            checkbox_counter--;
        })
    </script>

    <!-- JS For Slider !-->
    <script>
        "use strict";
        let slider_counter=0;
        $(document).on('click', '.add_slider', function(e){
            let html='';
            slider_counter++;

            html=`<div class="card mt-2" id="slider_append_${slider_counter}">
                    <div class="card-body">
                        <button class="btn-danger btn-sm float-right delete_slider_append" data-id="${slider_counter}" type="button">  <i class="fa fa-trash"></i>  </button>
                        <div class="row">
                            <div class="form-group col-md-6">
                                <label for=""><?php echo e(trans('Title')); ?> <span class="text-danger">*</span></label>
                                <input type="text" class="form-control" name="slider_title[]">
                            </div>

                            <div class="form-group col-md-6">
                                 <label for=""><?php echo e(trans('Value')); ?></label>
                                 <input type="text" class="form-control" name="slider_value[]">
                            </div>
                            <div class="form-group col-md-6 mt-3">
                                <label for=""><?php echo e(trans('Text Title')); ?></label>
                                <input type="text" class="form-control"  name="text_title[]">
                            </div>

                            <div class="form-group col-md-6 mt-3">
                                <label for=""><?php echo e(trans('Text Description')); ?></label>
                                <input type="text" class="form-control" name="text_description[]">
                            </div>

                            <div class="form-group col-md-12 <?php echo e(isset($step) && $step->design=='design_eight'?'d-none':''); ?>">
                                <label for=""><?php echo e(trans('Image')); ?></label>
                                <input type="file" class="form-control p-1" name="slider_image[]">
                            </div>
                        </div>
                    </div>
                </div>`;


            $('.slider-section').append(html);
        });

        $(document).on('click', '.delete_slider_append', function (e){
            const id=$(this).attr('data-id');

            $('#slider_append_'+id).remove();
            slider_counter--;
        })
    </script>

    <!-- JS For Inputs !-->
    <script>
        "use strict";
        let inputs_counter=0;
        $(document).on('click', '.add_inputs', function(e){

            const type= $(this).attr('data-type');

            let placeholder='ft/cm';

            if(type && type=='weight'){
                placeholder='lb/kg';
            }

            let html='';
            inputs_counter++;

            html=`<div class="card mt-2" id="slider_append_${inputs_counter}">
                    <div class="card-body">
                        <button class="btn-danger btn-sm float-right delete_slider_append" data-id="${inputs_counter}" type="button">  <i class="fa fa-trash"></i>  </button>
                        <div class="row">
                            <div class="form-group col-md-12">
                                <label for=""><?php echo e(trans('Title')); ?> <span class="text-danger">*</span></label>
                                <input type="text" class="form-control" name="input_title[]" placeholder="<?php echo e(trans('Enter title')); ?>">
                            </div>

                            <div class="form-group col-md-6">
                                <label ><?php echo e(trans('Minimum')); ?></label>
                                <input type="text" class="form-control" name="input_min[]" placeholder="<?php echo e(trans('Enter minimum value')); ?>">
                            </div>

                            <div class="form-group col-md-6">
                                <label ><?php echo e(trans('Maximum')); ?></label>
                                <input type="text" class="form-control p-1" name="input_max[]" placeholder="<?php echo e(trans('Enter maximum value')); ?>">
                            </div>

                            <div class="form-group col-md-6">
                                <label ><?php echo e(trans('Group')); ?></label>
                                <input type="text" class="form-control p-1" placeholder="${placeholder}" name="input_group[]">
                            </div>
                            <div class="form-group col-md-6">
                                <label for=""><?php echo e(trans('Value')); ?></label>
                                <input type="text" class="form-control p-1" name="input_value[]" placeholder="Enter value">
                            </div>
                        </div>
                    </div>
                </div>`;

            if(type && type=='weight'){
                $('.weight-section').append(html);
            }else {
                $('.inputs-section').append(html);
            }

        });


        $(document).on('click', '.delete_input_append', function (e){
            const id=$(this).attr('data-id');

            $('#input_append_'+id).remove();
            slider_counter--;
        });

    </script>

    <!-- JS For Radio !-->
    <script>
        "use strict";
        let radio_counter=0;
        $(document).on('click', '.add_radio', function(e){
            let html='';
            radio_counter++;

            html=`<div class="card mt-2" id="radio_append_${radio_counter}">
                    <div class="card-body">
                        <button class="btn-danger btn-sm float-right delete_radio_append" data-id="${radio_counter}" type="button">  <i class="fa fa-trash"></i>  </button>
                        <div class="row">
                            <div class="form-group col-md-6">
                                <label for=""><?php echo e(trans('Title')); ?> <span class="text-danger">*</span></label>
                                <input type="text" class="form-control" name="radio_title[]" placeholder="<?php echo e(trans('Enter title')); ?>">
                            </div>

                            <div class="form-group col-md-6">
                                <label ><?php echo e(trans('Value')); ?></label>
                                <input type="text" class="form-control" name="radio_value[]" placeholder="<?php echo e(trans('Enter value')); ?>">
                            </div>

                            <div class="form-group col-md-12">
                                <label ><?php echo e(trans('Description')); ?></label>
                                <input type="text" class="form-control p-1"  placeholder="<?php echo e(trans('Enter Description')); ?>" name="radio_description[]">
                            </div>
                        </div>
                    </div>
                </div>`;


            $('.radio-section').append(html);
        });


        $(document).on('click', '.delete_radio_append', function (e){
            const id=$(this).attr('data-id');

            $('#radio_append_'+id).remove();
            radio_counter--;
        });

    </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/fitness.picotech.app/public_html/resources/views/admin/step/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 ]--