@extends('admin::layouts.plane') @section('page_heading') {{$title}} @endsection @section('content')
{{ Form::open(array('url' => 'teacher/addAcademicResult', 'method' => 'post')) }} {{ csrf_field() }}
@php $rating = ['1'=>'MODIFIE','2'=>'EMERGING','3'=>'DEVELOPING','4'=>'PROFICIENT','5'=>'ADVANCED']; $role_id = Auth::user()->role_id; @endphp
Select Session {{ Form::select('session', $session_list, $session, ['placeholder' => 'Session', 'class' => 'form-control', 'id' => 'session', 'required' => '']) }}
Class Section @php $result_type = $_REQUEST['result_type']; $class_section_array = array(); foreach ($class_section as $key => $value) { $classNumVal = explode('|',$key); $class_section_array[$key] = $value; } @endphp @php $current_class_section = -13; if(isset($_POST['current_class']) && isset($_POST['section'])) $current_class_section = $_POST['current_class'].'|'.$_POST['section']; @endphp {{ Form::select('class_section', $class_section_array, $current_class_section, ['placeholder' => '- Select Class -', 'class' => 'form-control', 'id' => 'class_section', 'required' => '']) }}
Board @php $board = ''; if(!empty($_POST['board'])) { $board = $_POST['board']; }else{ $board = 'CBSE'; } @endphp {{ Form::select('board', ["CBSE"=>"CBSE","IB"=>"IB","CE"=>"CE"], $board, ['class' => 'form-control', 'id' => 'board', 'required' => '']) }}
Order By {{ Form::select('order_by', ["Student Name"=>"Student Name","Admission No"=>"Admission No"], $order_by, [ 'class' => 'form-control', 'id' => 'order_by', 'required' => '']) }}
{{ Form::label('', '', array('class' => 'control-label col-sm-3')) }}  
{{ Form::label('', '', array('class' => 'control-label col-sm-6')) }}
{{ Form::close() }}

@if (count($sqlExist) > 0)
@php $j = 1; @endphp @foreach ($sqlExist as $results) @php $j++; @endphp @endforeach
S. No. Name
Adm No.
{{ $j }} {{ Form::hidden('board', $results->admission_no) }} {{ $results->first_name }} {{ $results->last_name }}
{{ $results->admission_no }}
@if($j == 1) {{ Form::hidden('onload_std_id', $results->admission_no , ['id' => 'onload_std_id']) }} {{ Form::hidden('onload_school_id', $results->school_id, ['id' => 'onload_school_id']) }} @endif
Student Name:
Adm No.:
Father Name:
Mother Name:
Adhaar:
DOB:
Gender:
Mobile:
{{ Form::open(array('method' => 'post','id' => substr($key,0,2),'class'=>'formATL')) }} {{ csrf_field() }}
THINKING SKILLS
{{ Form::select('thinking_skills', ['Critical-thinking skills'=>'Critical-thinking skills','Creative-thinking skills'=>'Creative-thinking skills','Transfer skills'=>'Transfer skills','Metacognitive skills'=>'Metacognitive skills'], '', ['placeholder' => '--Select--', 'class' => 'form-control marks_textbox', 'id' => 'thinking_skills', 'required' => '']) }}

{{ Form::close() }} {{ Form::open(array('method' => 'post','id' => substr($key,0,2),'class'=>'formATL')) }} {{ csrf_field() }}
SOCIAL SKILLS
{{ Form::select('social_skills', ['Positive interpersonal relationship and collaboration skills'=>'Positive interpersonal relationship and collaboration skills','socio-emotional intelligence'=>'socio-emotional intelligence'], '', ['placeholder' => '--Select--', 'class' => 'form-control marks_textbox', 'id' => 'social_skills', 'required' => '']) }}

{{ Form::close() }} {{ Form::open(array('method' => 'post','id' => substr($key,0,2),'class'=>'formATL')) }} {{ csrf_field() }}
COMMUNICATION SKILLS
{{ Form::select('communication_skills', ['Exchanging-information skills'=>'Exchanging-information skills','Literacy skills'=>'Literacy skills','ICT skills'=>'ICT skills'], '', ['placeholder' => '--Select--', 'class' => 'form-control marks_textbox', 'id' => 'communication_skills', 'required' => '']) }}

{{ Form::close() }} {{ Form::open(array('method' => 'post','id' => substr($key,0,2),'class'=>'formATL')) }} {{ csrf_field() }}
SELF-MANAGEMENT SKILLS
{{ Form::select('self_management_skills', ['Organization skills'=>'Organization skills','States of mind'=>'States of mind'], '', ['placeholder' => '--Select--', 'class' => 'form-control marks_textbox', 'id' => 'self_management_skills', 'required' => '']) }}

{{ Form::close() }} {{ Form::open(array('method' => 'post','id' => substr($key,0,2),'class'=>'formATL')) }} {{ csrf_field() }}
RESEARCH SKILLS
{{ Form::select('research_skills', ['Information-literacy skills'=>'Information-literacy skills','Media-Literacy skills'=>'Media-Literacy skills','Ethical use of media or information'=>'Ethical use of media or information'], '', ['placeholder' => '--Select--', 'class' => 'form-control marks_textbox', 'id' => 'research_skills', 'required' => '']) }}

{{ Form::close() }}
@endif @stop