WordPress

Coming Soon

revealability
<?php $__env->startSection('title','View Qualification '); ?> <?php $__env->startSection('main_container'); ?> <!-- partial --> <div class="main-panel"> <div class="content-wrapper"> <div class="page-header"> <h3 class="page-title"> Apply for Qualifications offered by IIMT Studies </h3> <nav aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="#">Home</a></li> <li class="breadcrumb-item active" aria-current="page">Learner Registration</li> </ol> </nav> </div> <div class="row"> <div class="col-md-12 grid-margin stretch-card"> <div class="card"> <div class="card-body"> <form class="forms-sample" action="" method="post" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <input type="hidden" name="form_id" value="<?php echo $fetch->form_id?>"/> <div class="form-group"> <label for="exampleInputUsername1">Qualification title <span style="color:red">*</span></label> <input type="text" class="form-control" id="exampleInputUsername1" name="title" value="<?php echo e($fetch->title); ?>" readonly> </div> <div class="form-group"> <label for="exampleInputUsername1">Qualification wise learners targeted numbers<span style="color:red">*</span></label> <input type="text" class="form-control" id="exampleInputUsername1" name="target_number" value="<?php echo e($fetch->target_number); ?>" readonly> </div> <div class="form-group"> <label for="exampleInputUsername1"> Details of why Centre feels, this qualification is needed in the market<span style="color:red">*</span></label> <input type="text" class="form-control" id="exampleInputUsername1" name="qualification_need" value="<?php echo e($fetch->qualification_need); ?>" readonly> </div> <div class="form-group"> <label for="exampleInputUsername1">Details of staff involved in the qualification delivery<span style="color:red">*</span></label> <input type="text" class="form-control" id="exampleInputUsername1" name="qualification_delivery" value="<?php echo e($fetch->qualification_delivery); ?>" readonly> </div> <div class="form-group"> <label for="exampleInputUsername1">Details of resources available with centre to deliver the qualification <span style="color:red">*</span></label> <input type="text" class="form-control" id="exampleInputUsername1" name="resource" value="<?php echo e($fetch->resource); ?>" readonly> </div> <div class="row"> <div class="form-group" id="cv" style="margin-left: 15px;"> <label for="exampleInputUsername1">Staff CVs and their competency to deliver the qualification should be at par with qualification criteria <span style="color:red">*</span></label> <input type="file" class="form-control" style="display: none" id="exampleInputUsername1" name="staff_cv[]" value="<?php echo e($fetch->staff_cv); ?>"><br> <?php $staff_cv=$fetch->staff_cv; $img_arr=explode(",",$staff_cv); foreach($img_arr as $d) { ?> <a href="<?php echo e(asset('public/Admin/upload/staff_cv/'.$d)); ?>" target="_blank"><i class="fa fa-paperclip menu-icon"></i></a> <?php } ?> </div> <!-- <div class="form-group"> <label for="exampleInputUsername1"></label> <a href="#" class="pl form-control" style="color:white;background-color:red;margin-left:4px;" >+</a> </div> <div class="form-group"> <label for="exampleInputUsername1"></label> <a href="#" class="mi form-control" style="color:white;background-color:red;margin-left:4px;">-</a> </div> --> </div> <div class="form-group"> <label for="exampleInputUsername1">How centre will be able to ensure the quality assurance of delivery and assessment<span style="color:red">*</span></label> <input type="text" class="form-control" id="exampleInputUsername1" name="quality_assurance" value="<?php echo e($fetch->quality_assurance); ?>" readonly> </div> <div class="form-group"> <label for="exampleInputUsername1">Classroom information where the centre is intending to deliver the qualification<span style="color:red">*</span></label> <input type="text" class="form-control" id="exampleInputUsername1" name="class_info" value="<?php echo e($fetch->class_info); ?>" readonly> </div> <div class="form-group"> <label for="exampleInputUsername1">Specified assessment method which the centre is proposing for that qualification (must be chosen from the assessment policy of IIMT Studies)<span style="color:red">*</span></label> <input type="text" class="form-control" id="exampleInputUsername1" name="assessment_method" value="<?php echo e($fetch->assessment_method); ?>" readonly> </div> <div class="form-group"> <label for="exampleInputUsername1"> Any third party involved in qualification delivery along with centre<span style="color:red">*</span></label> <input type="text" class="form-control" id="exampleInputUsername1" name="third_party" value="<?php echo e($fetch->third_party); ?>" readonly> </div> <div class="form-group"> <label for="exampleInputUsername1">I confirm that the application I am submitting, including documents, information and projections are correct and genuine.<span style="color:red">*</span></label> <?php if($fetch->document_confirmation == 'Agree'): ?> <input type="checkbox" name="document_confirmation" checked style="margin-left:15px;" value="Agree" required readonly> <?php else: ?> <input type="checkbox" name="document_confirmation" style="margin-left:15px;" value="Agree" required readonly> <?php endif; ?> </div> <div class="form-group"> <label for="exampleInputUsername1">I also confirm I have read all policies and processes and agree to comply quality processes defined by IIMT Studies at all times.<span style="color:red">*</span></label> <?php if($fetch->policies_confirmation == 'Agree'): ?> <input type="checkbox" name="policies_confirmation" checked style="margin-left:15px;" value="Agree" required readonly> <?php else: ?> <input type="checkbox" name="policies_confirmation" style="margin-left:15px;" value="Agree" required readonly> <?php endif; ?> </div> </form> </div> </div> </div> </div> </div> <!-- content-wrapper ends --> <?php $__env->stopSection(); ?> <?php echo $__env->make('Admin.Layout.main_layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/opaldemo/public_html/center.iimtstudies.co.uk/resources/views/Admin/qualification_form.blade.php ENDPATH**/ ?>