@extends('layouts.dashboard') @section('title-content') {{ config('app.name') }} | SET EXAM TYPE @endsection @section('content')

SET EXAMS TYPE

{!! Form::model($acyear, ['method' => 'POST', 'route' => ['quality.assurance.settype']]) !!}
{!! Form::label('semester', 'Select semester') !!} {!! Form::select( 'semester', $academic_years, auth()->user()->staff->year_id, $errors->has('semester') ? ['class' => 'form-control is-invalid', 'id' => 'semester'] : ['class' => 'form-control', 'id' => 'semester'], ) !!}
{{ Form::button('Set Type', ['type' => 'submit', 'class' => 'btn btn-lg btn-success pull-right']) }}
{!! Form::close() !!}
@endsection @section('scripts') @endsection