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

Register Case

Register a new case for a student. This will be used to track the student's clearance progress.

{!! Form::open(['route' => 'clearances.store', 'method' => 'POST']) !!}

Case Information

{!! Form::label('student_id', 'Select Student') !!} {!! Form::select( 'student_id', $students, null, $errors->has('student_id') ? ['class' => 'form-control is-invalid', 'id' => 'student_id'] : ['class' => 'form-control', 'id' => 'student_id'], ) !!}
{!! Form::label('remarks', 'Case Accusations:') !!} {!! Form::textarea('remarks', null, ['placeholder' => 'Describe the accusations', 'class' => 'form-control']) !!}
{!! Form::close() !!}
@endsection @section('scripts') @endsection