@if(!session('studentData'))
Welcome {{explode('@',session('temp_user'))[0]}}
Search Student
@if ($errors->any())
{!! $errors->first() !!}
@endif
@else
@php $student = session('studentData'); @endphp
{!! $student && !empty($student->regno) ?
'Not Migrated
Please verify and transfer the data after completing this action.
' :
'Already Migrated
Please use the “Forgot Password” feature to reset your account after completing this action.
' !!}
@if ($errors->any())
{!! $errors->first() !!}
@endif
@if(session('success'))
{!! session('success') !!}
@endif
@if($student && !empty($student->reg_number))
List Payments
List Courses
@endif
LOGOUT
@endif