WordPress

Coming Soon

revealability
<?php $__env->startSection('title','Learner Registration'); ?> <?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="<?php echo e(url('/apply_qualification/'.$fetch->form_id)); ?>" 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(old('title')); ?>"> <!-- <?php if($errors->has('title')): ?> <span class="text-danger" ><?php echo e(($errors->first('title'))); ?></span> <?php endif; ?> --> </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(old('target_number')); ?>"> <!-- <?php if($errors->has('target_number')): ?> <span class="text-danger" ><?php echo e(($errors->first('target_number'))); ?></span> <?php endif; ?> --> </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(old('qualification_need')); ?>"> <!-- <?php if($errors->has('qualification_need')): ?> <span class="text-danger" ><?php echo e(($errors->first('qualification_need'))); ?></span> <?php endif; ?> --> </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(old('qualification_delivery')); ?>"> <!-- <?php if($errors->has('qualification_delivery')): ?> <span class="text-danger" ><?php echo e(($errors->first('qualification_delivery'))); ?></span> <?php endif; ?> --> </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(old('resource')); ?>"> <!-- <?php if($errors->has('resource')): ?> <span class="text-danger" ><?php echo e(($errors->first('resource'))); ?></span> <?php endif; ?> --> </div> <div class="row"> <div class="form-group" id="cv"> <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" id="exampleInputUsername1" name="staff_cv[]" value="<?php echo e(old('staff_cv')); ?>"><br> <!-- <?php if($errors->has('staff_cv')): ?> <span class="text-danger" ><?php echo e(($errors->first('staff_cv'))); ?></span> <?php endif; ?> --> </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(old('quality_assurance')); ?>"> <!-- <?php if($errors->has('quality_assurance')): ?> <span class="text-danger" ><?php echo e(($errors->first('quality_assurance'))); ?></span> <?php endif; ?> --> </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(old('class_info')); ?>"> <!-- <?php if($errors->has('class_info')): ?> <span class="text-danger" ><?php echo e(($errors->first('class_info'))); ?></span> <?php endif; ?> --> </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(old('assessment_method')); ?>"> <!-- <?php if($errors->has('assessment_method')): ?> <span class="text-danger" ><?php echo e(($errors->first('assessment_method'))); ?></span> <?php endif; ?> --> </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(old('third_party')); ?>"> <!-- <?php if($errors->has('third_party')): ?> <span class="text-danger" ><?php echo e(($errors->first('third_party'))); ?></span> <?php endif; ?> --> </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> <input type="checkbox" name="document_confirmation" style="margin-left:15px;" value="Agree" required> </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> <input type="checkbox" name="policies_confirmation" style="margin-left:15px;" value="Agree" required> </div> <button type="submit" class="btn btn-primary mr-2" name="submit" value="Send">Submit</button> </form> </div> </div> </div> </div> </div> <!-- content-wrapper ends --> <?php $__env->stopSection(); ?> <?php echo $__env->make('User.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/User/apply_qualification.blade.php ENDPATH**/ ?>