IMMREX7

aku nok ndi : /home/spdtg/www/schoolmis/resources/views/onlinereg/
File Up :
aku nok ndi : /home/spdtg/www/schoolmis/resources/views/onlinereg/royal-success.blade.php

<!DOCTYPE html>
<html lang="{{ app()->getLocale() }}">
    @include('layouts.partial.head')
    <body class="theme-purple">
        <div class="overlay"></div>
        <div class="row" style="margin:0px !important;">
            <div class="col-sm-1"></div>
            @if($registration->form_type != "R")
            <div class="col-sm-10">
                <div class="card">
                    <div style="text-align: center;">
                        <a><img src="{{ asset('storage/schools/'.$school->idSchool.'/'.$school->schoolLogo)}}" width="90" alt="School MIS"></a>
                        <h2  style="text-align: center; font-size: 20px;"><strong> Enquiry Submitted</strong></h2>
                    </div>
                    <div class="body">
                        <div class="header">
                            <h2><strong>Thanks For Your enquiry. Your Enquiry No is - (@if(isset($regno)) {{$regno}} @endif)</strong></h2>
                        </div>
                        <p>Save this for your future reference.You will receive a call shortly from school.</p>
                    </div>
                </div>
                <div class="col-sm-1"></div>
            </div>
            @else
            <div class="col-sm-10">
                <div class="card">
                    <div style="text-align: center;">
                        <a><img src="{{ asset('storage/schools/'.$school->idSchool.'/'.$school->schoolLogo)}}" width="90" alt="School MIS"></a>
                        <h2  style="text-align: center; font-size: 20px;"><strong> Registration Successful !!</strong></h2>
                    </div>
                    <div class="body">
                        <div class="header">
                            <h2><strong>Thanks For Your Registration. Your Registration No is - (@if(isset($regno)) {{$regno}} @endif)</strong></h2>
                        </div>
                        <p>Save this for your future reference.You will receive a call shortly from school.</p>
                        
                        <p><strong>Now Upload these Documents For Further Processing.</strong></p>

                        @if ($message = Session::get('error'))
                        <div class="alert alert-danger alert-block">
                            <button type="button" class="close" data-dismiss="alert">×</button>	
                                <strong>{{ $message }}</strong>
                        </div>
                        @endif

                        {!! Form::open(['url' => 'uploadregdocuments', 'class' => 'form-horizontal','files'=>true, 'enctype'=>'multipart/form-data']) !!}
                        
                        <input type="hidden" name="registrationNo" value="{{$registration->registrationNo}}">
                        @if(count($documentMaster) > 0)
                        @foreach($documentMaster as $key=>$value)
                        <div class="row clearfix">
                            <div class="col-sm-5 form-control-label">
                                <label for="classname">{{$value}}</label>
                            </div>
                            <div class="col-sm-6">
                                <div class="form-group">
                                    @if(count($uploaded) == 0)
                                        {!! Form::file(str_replace(' ', '_',strtolower($value)),null,['class' => 'form-control','required'=>'required']) !!}
                                        @if ($errors->has(str_replace(' ', '_',strtolower($value))))
                                        <label id="minmaxlength-error" class="error" for="minmaxlength">
                                            <strong>{{ $errors->first(str_replace(' ', '_',strtolower($value))) }}</strong>
                                        </label>
                                        @endif
                                    @else @if(!in_array($value, $uploaded, TRUE))
                                        {!! Form::file(str_replace(' ', '_',strtolower($value)),null,['class' => 'form-control','required'=>'required']) !!}
                                        @if ($errors->has(str_replace(' ', '_',strtolower($value))))
                                        <label id="minmaxlength-error" class="error" for="minmaxlength">
                                            <strong>{{ $errors->first(str_replace(' ', '_',strtolower($value))) }}</strong>
                                        </label>
                                        @endif
                                    @else
                                        <label style="color:green;">Uploaded</label>
                                        @endif
                                    @endif
                                </div>
                            </div>
                        </div> 
                        @endforeach
                        @endif
                        
                        <div class="row clearfix">
                            <div class="col-sm-8 offset-sm-2">
                                {!! Form::submit('SAVE',['class' => 'btn btn-raised btn-primary btn-round waves-effect']) !!}
                            </div>
                        </div>
                        {!! Form::close() !!} 
                    </div>
                </div>
                <div class="col-sm-1"></div>
            </div>
            @endif
        </div>
    </div>
    <!-- Scripts -->
    @include('layouts.partial.script')
    @include('onlinereg.regscript')
</body>
</html>

Copyright © 2021 - 2025 IMMREX7