Viewing file: 4c200f93e6ec92837cfa39eed24ad695bd144384.php (10.23 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="<?php echo e(route('admin.teacher.create')); ?>"> <?php echo csrf_field(); ?> <div class="form-row"> <div class="fpb-7"> <label for="name" class="eForm-label"><?php echo e(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"><?php echo e(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"><?php echo e(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"><?php echo e(get_phrase("Department")); ?></label> <select name="department_id" id="department_id" class="form-select eForm-select eChoice-multiple-with-remove" required> <option value=""><?php echo e(get_phrase("Select a department")); ?></option> <?php $__currentLoopData = $departments; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $department): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($department->id); ?>"><?php echo e($department->name); ?></option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div>
<div class="fpb-7"> <label for="designation" class="eForm-label"><?php echo e(get_phrase('Designation')); ?></label> <select name="designation" class="form-select eForm-select eChoice-multiple-with-remove selectDesignation"> <option value=""><?php echo e(get_phrase("Select a designation")); ?></option> <?php $__currentLoopData = $designations; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $designation): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($designation); ?>"><?php echo e(ucwords(str_replace('_', ' ', $designation))); ?></option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> <div class="fpb-7 sub-designation-sec d-none" id="sub-designation-form"> <label for="designation" class="eForm-label"><?php echo e(get_phrase('Sub Designation')); ?></label> <select name="sub_designation" class="form-select eForm-select eChoice-multiple-with-remove selectDesignation"> <option value=""><?php echo e(get_phrase("Select a designation")); ?></option> <?php $__currentLoopData = $sub_designations; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $sub_designation): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($sub_designation); ?>"><?php echo e(ucwords(str_replace('_', ' ', $sub_designation))); ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div>
<div class="fpb-7"> <label class="eForm-label"><?php echo e(get_phrase('NID No')); ?><span class="required"></span></label> <input type="number" class="form-control eForm-control" name="nid_no" placeholder="<?php echo e(get_phrase('Enter NID No')); ?>" /> </div>
<div class="fpb-7"> <label class="eForm-label"><?php echo e(get_phrase('Educational Qualification')); ?><span class="required"></span></label> <input type="text" class="form-control eForm-control" name="educational_qualification" placeholder="<?php echo e(get_phrase('Educational Qualification')); ?>" /> </div>
<div class="fpb-7"> <label class="eForm-label"><?php echo e(get_phrase('Training')); ?><span class="required"></span></label> <input type="text" class="form-control eForm-control" name="training" placeholder="<?php echo e(get_phrase('Enter training information')); ?>" /> </div>
<div class="fpb-7"> <label for="join_date" class="eForm-label"><?php echo e(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="<?php echo e(date('m/d/Y')); ?>" /> </div>
<div class="fpb-7"> <label for="birthday" class="eForm-label"><?php echo e(get_phrase('Birthday')); ?><span class="required"></span></label> <input type="text" class="form-control eForm-control inputDate" id="birthday" name="birthday" value="<?php echo e(date('m/d/Y')); ?>" /> </div>
<div class="fpb-7"> <label for="gender" class="eForm-label"><?php echo e(get_phrase('Gender')); ?></label> <select name="gender" id="gender" class="form-select eForm-select eChoice-multiple-with-remove" required> <option value=""><?php echo e(get_phrase('Select gender')); ?></option> <option value="Male"><?php echo e(get_phrase('Male')); ?></option> <option value="Female"><?php echo e(get_phrase('Female')); ?></option> <option value="Others"><?php echo e(get_phrase('Others')); ?></option> </select> </div>
<div class="fpb-7"> <label for="phone" class="eForm-label"><?php echo e(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"><?php echo e(get_phrase('Blood group')); ?></label> <select name="blood_group" id="blood_group" class="form-select eForm-select eChoice-multiple-with-remove"> <option value=""><?php echo e(get_phrase('Select a blood group')); ?></option> <option value="a+"><?php echo e(get_phrase('A+')); ?></option> <option value="a-"><?php echo e(get_phrase('A-')); ?></option> <option value="b+"><?php echo e(get_phrase('B+')); ?></option> <option value="b-"><?php echo e(get_phrase('B-')); ?></option> <option value="ab+"><?php echo e(get_phrase('AB+')); ?></option> <option value="ab-"><?php echo e(get_phrase('AB-')); ?></option> <option value="o+"><?php echo e(get_phrase('O+')); ?></option> <option value="o-"><?php echo e(get_phrase('O-')); ?></option> </select> </div>
<div class="fpb-7"> <label for="designation" class="eForm-label"><?php echo e(get_phrase('First Joining')); ?></label> <select name="first_join" class="form-select eForm-select eChoice-multiple-with-remove" required> <option value=""><?php echo e(get_phrase("Select a first joining")); ?></option> <?php $__currentLoopData = $designations; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $designation): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($designation); ?>"><?php echo e(ucwords(str_replace('_', ' ', $designation))); ?></option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div>
<div class="fpb-7"> <label for="phone" class="eForm-label"><?php echo e(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" ><?php echo e(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"><?php echo e(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>
<?php /**PATH /home/picotech/domains/school.picotech.app/public_html/resources/views/admin/teacher/add_teacher.blade.php ENDPATH**/ ?>
|