@extends('layouts.app') @section('title') Student Registration @endsection @section('content')
@if (session('error')) @elseif(session('success')) @endif
Student Information

{{-- column1 --}}
  • Student Name: {{ $student->first_name }} {{ $student->last_name }}
  • Student Number: {{ $student->student_no }}
  • NRC: {{ $student->nrc_passport }}
  • Phone: {{ $student->phone }}
  • Email: {{ $student->email }}
{{-- column1 --}}
  • Entry Year: {{ $student->entry_year }}
  • Program of Study: {{ $student->program_name }}
{{--
--}} {{--
--}}
{{--
Registration
  • assistant_photoAction
  • printAnother action
  • favoriteSomething else here
--}}
@endsection