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

Changing Programme for :{{ $student->user->last_name . ', ' . $student->user->first_name . ' ' . $student->user->middle_name . '(' . $student->reg_no . ')' }}

Here below is the list of information of the student to be edited,please you can edit the information,then click the button save to save changes or cancel to go back.

{!! Form::model($student, [ 'method' => 'PATCH', 'route' => ['admissions.update-student.details', $srs->encode($student->user->id)], ]) !!}
{!! Form::label('program_id', 'Select Programme') !!} {!! Form::select('program_id', $programs, null, [ 'id' => 'program_id', 'placeholder' => 'Select Program', 'class' => 'form-control', ]) !!}
{!! html_entity_decode( link_to( route('admissions.student-info', [$srs->encode($student->user_id), $srs->encode($student->campus_id)]), 'Cancel', ), ) !!} {!! Form::submit('Update', ['class' => 'btn btn-lg btn-primary float-right']) !!}
{!! Form::close() !!}
@endsection @section('scripts') @endsection