IMMREX7
<fieldset>
<p class="form-control-static" style="font-weight: bold"> Details of Last School Attended</p>
<div class="row clearfix">
<div class="col-sm-2 form-control-label">
<label for="classname">Name of the School</label>
</div>
<div class="col-sm-3">
<div class="form-group">
<?php echo Form::text('lastSchool',null,['class' => 'form-control','onkeypress'=>'return onlylettersandSpecialChar(event)']); ?>
<?php if($errors->has('lastSchool')): ?>
<label id="minmaxlength-error" class="error" for="minmaxlength">
<strong><?php echo e($errors->first('lastSchool')); ?></strong>
</label>
<?php endif; ?>
</div>
</div>
<div class="col-sm-2 form-control-label">
<label for="classname">Curriculum/Board</label>
</div>
<div class="col-sm-3">
<div class="form-group">
<?php echo Form::text('board',null,['class' => 'form-control','onkeypress'=>'return onlylettersandSpecialChar(event)']); ?>
<?php if($errors->has('board')): ?>
<label id="minmaxlength-error" class="error" for="minmaxlength">
<strong><?php echo e($errors->first('board')); ?></strong>
</label>
<?php endif; ?>
</div>
</div>
</div>
<div class="row clearfix">
<div class="col-sm-2 form-control-label">
<label for="classname">Percentage</label>
</div>
<div class="col-sm-3">
<div class="form-group">
<?php echo Form::text('percentage',null,['class' => 'form-control','onkeypress'=>'return onlyNumbersandSpecialChar(event)']); ?>
<?php if($errors->has('percentage')): ?>
<label id="minmaxlength-error" class="error" for="minmaxlength">
<strong><?php echo e($errors->first('percentage')); ?></strong>
</label>
<?php endif; ?>
</div>
</div>
<div class="col-sm-2 form-control-label">
<label for="classname">Address</label>
</div>
<div class="col-sm-3">
<div class="form-group">
<?php echo Form::text('lastSchoolAddress',null,['class' => 'form-control','onkeypress'=>'return onlylettersandSpecialChar(event)']); ?>
<?php if($errors->has('lastSchoolAddress')): ?>
<label id="minmaxlength-error" class="error" for="minmaxlength">
<strong><?php echo e($errors->first('lastSchoolAddress')); ?></strong>
</label>
<?php endif; ?>
</div>
</div>
</div>
<div class="row clearfix">
<div class="col-sm-2 form-control-label">
<label for="classname">City</label>
</div>
<div class="col-sm-3">
<div class="form-group">
<?php echo Form::text('lastSchoolCity',null,['class' => 'form-control','onkeypress'=>'return onlylettersandSpecialChar(event)']); ?>
<?php if($errors->has('lastSchoolCity')): ?>
<label id="minmaxlength-error" class="error" for="minmaxlength">
<strong><?php echo e($errors->first('lastSchoolCity')); ?></strong>
</label>
<?php endif; ?>
</div>
</div>
<div class="col-sm-2 form-control-label">
<label for="classname">Postal/zipcoode</label>
</div>
<div class="col-sm-3">
<div class="form-group">
<?php echo Form::text('lastSchoolPincode',null,['class' => 'form-control','minlength'=>'6','maxlength'=>'6','onkeypress'=>'return isNumber(event)']); ?>
<?php if($errors->has('lastSchoolPincode')): ?>
<label id="minmaxlength-error" class="error" for="minmaxlength">
<strong><?php echo e($errors->first('lastSchoolPincode')); ?></strong>
</label>
<?php endif; ?>
</div>
</div>
</div>
<div class="row clearfix">
<div class="col-sm-2 form-control-label">
<label for="classname">State</label>
</div>
<div class="col-sm-3">
<div class="form-group">
<?php echo Form::select('lastSchoolState',$states,null,['class' => 'form-control show-tick ms select2']); ?>
<?php if($errors->has('lastSchoolState')): ?>
<label id="minmaxlength-error" class="error" for="minmaxlength">
<strong><?php echo e($errors->first('lastSchoolState')); ?></strong>
</label>
<?php endif; ?>
</div>
</div>
<div class="col-sm-2 form-control-label">
<label for="classname">Telephone</label>
</div>
<div class="col-sm-3">
<div class="form-group">
<?php echo Form::text('lastSchoolPhone',null,['class' => 'form-control','onkeypress'=>'return onlyNumbersandSpecialChar(event)']); ?>
<?php if($errors->has('lastSchoolPhone')): ?>
<label id="minmaxlength-error" class="error" for="minmaxlength">
<strong><?php echo e($errors->first('lastSchoolPhone')); ?></strong>
</label>
<?php endif; ?>
</div>
</div>
</div>
<div class="row clearfix">
<div class="col-sm-2 form-control-label">
<label for="classname">Reason for Change</label>
</div>
<div class="col-sm-3">
<div class="form-group">
<?php echo Form::text('reasonForChange',null,['class' => 'form-control','onkeypress'=>'return onlylettersandSpecialChar(event)']); ?>
<?php if($errors->has('reasonForChange')): ?>
<label id="minmaxlength-error" class="error" for="minmaxlength">
<strong><?php echo e($errors->first('reasonForChange')); ?></strong>
</label>
<?php endif; ?>
</div>
</div>
</div>
</fieldset>
Copyright © 2021 -