@extends('layouts.registrarapp') @section('content')
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ csrf_field() }}

Modify Student Profile

@if ($list->academic_type=='College' or $list->academic_type == 'TESDA')
@elseif ($list->academic_type=='Senior High School')
@elseif ($list->academic_type=='Junior High School')
@else
No Department yet has been set to the Applicant. Please see administrator.
@endif


@stop