@extends('layouts.master') @section('title') {{ __('Student Profile') }} - {{ $student->user->first_name }} {{ $student->user->last_name }} @endsection @section('content')
{{ __('Student') }}
{{ __('Admission Date') }}: {{ $student->admission_date ?? '-' }}
{{ __('Date of Birth') }}: {{ $student->user->dob ?? '-' }}
{{ __('Mobile Number') }}: {{ $student->user->mobile ?? '-' }}
{{ $student->user->current_address ?: '-' }}
{{ $student->user->permanent_address ?: '-' }}
{{ __('Name') }}: {{ $student->guardian->first_name }} {{ $student->guardian->last_name }}
{{ __('Gender') }}: {{ ucfirst($student->guardian->gender) }}
{{ __('Email') }}: {{ $student->guardian->email }}
{{ __('Mobile') }}: {{ $student->guardian->mobile }}