@extends('layouts/eims_layout') @section('title', '| ' . $pageTitle) @section('content')
{{-- ul nav nav-tabs --}}

{{-- Header --}}
{{-- make the image vertically and horizontally center inside this div--}}
{{ $company->name }}

{{$company->name}}

Address: {{$company->address}}
{{ $company->phone ? "Phone: $company->phone" : null }} {{$company->telephone ? ', Telephone: ' . $company->telephone : null}}
Email: {{$company->email}}
Web: {{$company->website}}
photo") : asset('images/eims/passport-size.png') }}" alt="Student Photo" style="max-width: 125px; max-height: 125px;" >
Please click above to upload photo.

{{-- admission_no --}}
Admission No: * @foreach(str_split($student_admission_no) as $char) {{ $char }} @endforeach
Application For Admission

{!! Form::open(['url' => '#', 'role' => 'form', 'class'=>'form-horizontal form-groups', 'encrypt' => 'multipart/form-data', 'id' => 'student_form' ]) !!} {!! Form::file('student_photo', [ 'class' => 'form-control hide', 'id' => 'student_photo', 'type' => 'file', 'accept' => 'image/png, image/jpeg, image/jpg', 'placeholder' => 'Upload student photo', 'onchange' => 'validateFileSize(this)' ]) !!} {{-- Status--}}
{!! Form::label('status', 'Status', ['class' => 'col-md-4 control-label']) !!}
{!! Form::select('status', $statusList ?? [], $student->status, ['class' => 'form-control custom-select2', 'id' => 'status']) !!}


{{-- div class="tab-content" --}}
{{-- form footer buttons --}}
Back
{!! Form::close() !!}
{{-- div panel-body --}}
{{-- Div panel panel-default panel-border --}}
{{-- col-md-10 --}}
{{-- Tab Loading Scripts --}} @endsection