@extends('layouts.studentportalnav') @section('title', 'Student Profile') @section('content')
@if(session('success')) @endif @if(session('error')) @endif
Verified Student Profile

Student Profile

Manage your personal information, credentials, and academic details.

@if(!empty($student->image)) {{ $student->full_name }} @endif
{{ strtoupper(substr($student->full_name ?? 'S', 0, 1)) }}

{{ $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 Address {{ $student->email }}
Phone Number {{ $student->phone }}

Educational Background

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

Course Details

Enrolled Course {{ $student->course_name }}
Duration {{ $student->duration }}
Current Semester {{ $student->current_semester }}
Instructor / Trainer {{ $student->trainer_name }}
@endsection