IMMREX7

aku nok ndi : /home/spdtg/www/schoolmis/resources/views/schools/admentries/
File Up :
aku nok ndi : /home/spdtg/www/schoolmis/resources/views/schools/admentries/_formlastschool.blade.php

<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">
                {!! Form::text('lastSchool',null,['class' => 'form-control','onkeypress'=>'return onlylettersandSpecialChar(event)']) !!}
                @if ($errors->has('lastSchool'))
                <label id="minmaxlength-error" class="error" for="minmaxlength">
                    <strong>{{ $errors->first('lastSchool') }}</strong>
                </label>
                @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">
                {!! Form::text('board',null,['class' => 'form-control','onkeypress'=>'return onlylettersandSpecialChar(event)']) !!}
                @if ($errors->has('board'))
                <label id="minmaxlength-error" class="error" for="minmaxlength">
                    <strong>{{ $errors->first('board') }}</strong>
                </label>
                @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">
                {!! Form::text('percentage',null,['class' => 'form-control','onkeypress'=>'return onlyNumbersandSpecialChar(event)']) !!}
                @if ($errors->has('percentage'))
                <label id="minmaxlength-error" class="error" for="minmaxlength">
                    <strong>{{ $errors->first('percentage') }}</strong>
                </label>
                @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">
                {!! Form::text('lastSchoolAddress',null,['class' => 'form-control','onkeypress'=>'return onlylettersandSpecialChar(event)']) !!}
                @if ($errors->has('lastSchoolAddress'))
                <label id="minmaxlength-error" class="error" for="minmaxlength">
                    <strong>{{ $errors->first('lastSchoolAddress') }}</strong>
                </label>
                @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">
                {!! Form::text('lastSchoolCity',null,['class' => 'form-control','onkeypress'=>'return onlylettersandSpecialChar(event)']) !!}
                @if ($errors->has('lastSchoolCity'))
                <label id="minmaxlength-error" class="error" for="minmaxlength">
                    <strong>{{ $errors->first('lastSchoolCity') }}</strong>
                </label>
                @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">
                {!! Form::text('lastSchoolPincode',null,['class' => 'form-control','minlength'=>'6','maxlength'=>'6','onkeypress'=>'return isNumber(event)']) !!}
                @if ($errors->has('lastSchoolPincode'))
                <label id="minmaxlength-error" class="error" for="minmaxlength">
                    <strong>{{ $errors->first('lastSchoolPincode') }}</strong>
                </label>
                @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">
                {!! Form::select('lastSchoolState',$states,null,['class' => 'form-control show-tick ms select2']) !!}
                @if ($errors->has('lastSchoolState'))
                <label id="minmaxlength-error" class="error" for="minmaxlength">
                    <strong>{{ $errors->first('lastSchoolState') }}</strong>
                </label>
                @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">
                {!! Form::text('lastSchoolPhone',null,['class' => 'form-control','onkeypress'=>'return onlyNumbersandSpecialChar(event)']) !!}
                @if ($errors->has('lastSchoolPhone'))
                <label id="minmaxlength-error" class="error" for="minmaxlength">
                    <strong>{{ $errors->first('lastSchoolPhone') }}</strong>
                </label>
                @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">
                {!! Form::text('reasonForChange',null,['class' => 'form-control','onkeypress'=>'return onlylettersandSpecialChar(event)']) !!}
                @if ($errors->has('reasonForChange'))
                <label id="minmaxlength-error" class="error" for="minmaxlength">
                    <strong>{{ $errors->first('reasonForChange') }}</strong>
                </label>
                @endif
            </div>
        </div>
    </div>
</fieldset>

Copyright © 2021 - 2025 IMMREX7