@extends('layouts.dashboard') @section('title-content') {{ config('app.name') }} | Dash Index @endsection @section('content')

Dashboard -STUDENT CORE SUBJECT REGISTRATION

Student Process

{!! Form::open([ 'route' => 'settings.process-all-students-info', 'class' => 'process-info', 'method' => 'POST', 'role' => 'form', ]) !!}
{!! Form::label('faculty', 'Select Faculty') !!} {!! Form::select( 'faculty', $faculty, null, $errors->has('faculty') ? ['class' => 'form-control is-invalid', 'id' => 'faculty'] : ['class' => 'form-control', 'id' => 'faculty'], ) !!}
{!! Form::label('program', 'Select Program') !!} {!! Form::select( 'program', $program, null, $errors->has('program') ? ['class' => 'form-control is-invalid', 'id' => 'program'] : ['class' => 'form-control', 'id' => 'program'], ) !!}
{!! Form::label('batch', 'Select Batch') !!} {!! Form::select( 'batch', $batch, null, $errors->has('batch') ? ['class' => 'form-control is-invalid', 'id' => 'batch'] : ['class' => 'form-control', 'id' => 'batch'], ) !!}
{!! Form::label('year', 'Select Year') !!} {!! Form::select( 'year', $years, null, $errors->has('year') ? ['class' => 'form-control is-invalid', 'id' => 'year'] : ['class' => 'form-control', 'id' => 'year'], ) !!}
{!! Form::label('semester', 'Select Semester') !!} {!! Form::select( 'semester', $semesters, null, $errors->has('semester') ? ['class' => 'form-control is-invalid', 'id' => 'semester'] : ['class' => 'form-control', 'id' => 'semester'], ) !!}
{{ Form::button('Process All Student', ['type' => 'submit', 'class' => 'btn btn-lg btn-success pull-right']) }} {!! Form::close() !!}
@endsection @section('scripts') @endsection