@extends('layouts.master') @section('title', 'Student Profile') @section('style') @endsection @section('content') @include('layouts.header') @include('layouts.header-sub')

{{-- Header --}}

{{ $student->student_code ?? '-' }}

{{ $student->student_fullname ?? '-' }}


{{-- Student Info --}}
Name
Student ID
{{ $student->student_fullname ?? '-' }}
{{ $student->student_code ?? '-' }}
Email
CGPA
{{ $student->student_email ?? '-' }}
{{ $student->student_cgpa ?? '-' }}
Program
School
{{ $student->program_name ?? '-' }}({{ $student->program_shortname ?? '' }})
{{ $student->school_name ?? '-' }}({{ $student->school_shortname ?? '' }})
Advisor
{{ $student->title_en_name ?? '-' }}{{ $student->advisor_name ?? '-' }}
CE Credit
Rank
{{ $student->student_ce_credit ?? '-' }}
{{ $student->student_rank ?? '-' }}
Misconduct
Remark
{{ $student->student_misconduct ?? '-' }}
{{ $student->remarks ?? '-' }}



@include('layouts.footer') @endsection