@extends('layouts.admin.layout') @section('content')
@include('partials.message')

Student Profile

  • Edit
  • @csrf @method('delete')

basic information :

  • Date Of Birth :

    {{ date('d-m-Y',strtotime(optional($user->userprofile)->date_of_birth)) }}

  • Blood Group :

    {{ strtoupper($user->userprofile->blood_group) }}

  • Gender :

    @if($user->userprofile->gender == 'male') Boy @elseif($user->userprofile->gender == 'female') Girl @endif

  • Aadhaar Number :

    @if(optional($user->userprofile)->aadhar_number != '') {{ optional($user->userprofile)->aadhar_number }} @else -- @endif

  • Birth Place :

    {{ $user->userprofile->birth_place }}

  • Native Place :

    {{ $user->userprofile->native_place }}

  • Mother Tongue :

    {{ $user->userprofile->mother_tongue }}

  • Caste :

    {{ $user->userprofile->caste }}

contact information :

{{ ucwords($user->FullName) }}

ID: {{ $user->id }}

@endsection @push('scripts') @endpush