@extends('layouts.studentportalnav') @section('title', 'Student Profile') @section('content')

Student Profile

Manage your personal information and academic details.

Profile Image

{{ $student->full_name }}

Student ID : {{ $student->student_id }}

Personal Information

Full Name {{ $student->full_name }}
NIC / Passport {{ $student->nic_passport }}
Date of Birth {{ !empty($student->date_of_birth) ? date('d F Y', strtotime($student->date_of_birth)) : 'N/A' }}
Gender {{ $student->gender }}
Email {{ $student->email }}
Phone {{ $student->phone }}

Educational Background

Qualification {{ $student->qualification }}
Institute {{ $student->institute }}
Year Completed {{ $student->year_completed }}

Course Details

{{ $student->course_name }}
Duration : {{ $student->duration }}
Current Semester : {{ $student->current_semester }}
Trainer : {{ $student->trainer_name }}
@endsection