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

Update Program:

{{--
--}} {{--

Panel to Delete Student, If is Uploaded incorrectly.

--}} {{--
--}}
{{--

@lang('app.intro-text')

--}} {!! Form::open([ 'route' => 'update-student-issues', 'class' => 'reports-module', 'method' => 'POST', 'role' => 'form', ]) !!}
{!! Form::label('student', 'Select Student') !!} {!! Form::select( 'student', $student, null, $errors->has('student') ? ['class' => 'form-control is-invalid', 'id' => 'student'] : ['class' => 'form-control', 'id' => 'student'], ) !!}
{!! Form::label('student', 'Select Program') !!} {!! Form::select( 'program', $program, null, $errors->has('program') ? ['class' => 'form-control is-invalid', 'id' => 'program'] : ['class' => 'form-control', 'id' => 'program'], ) !!}
{{--
--}}
{{ Form::button('UPDATE', ['type' => 'submit', 'class' => 'btn btn-lg btn-success pull-right', 'id' => 'generateBtn']) }}
{{ Form::close() }}
@endsection @section('scripts') @endsection