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

Update Student Registration Number

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

Panel to Delete Student, If is Uploaded incorrectly.

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

@lang('app.intro-text')

--}} {!! Form::open([ 'route' => 'update-student_issues_program', '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('new_regNo', 'New registration number*') !!} {!! Form::text( 'new_regNo', old('new_regNo'), $errors->has('new_regNo') ? ['placeholder' => 'New registration number', 'class' => 'form-control is-invalid'] : ['placeholder' => 'New registration number', 'class' => 'form-control'], ) !!} @if ($errors->has('new_regNo')) {{ $errors->first('new_regNo') }} @endif
{{ Form::button('UPDATE', ['type' => 'submit', 'class' => 'btn btn-lg btn-success pull-right', 'id' => 'generateBtn']) }}
{{ Form::close() }}
@endsection @section('scripts') @endsection