@extends('layouts.admin.layout') @section('content')
basic information :
{{ date('d-m-Y', strtotime(optional($user->userprofile)->date_of_birth)) }}
@if ($user->userprofile->sub_occupation != '') {{ ucwords(str_replace('_', ' ', $user->userprofile->profession)) }} ( {{ ucwords($user->userprofile->sub_occupation) }} ) @else {{ ucwords(str_replace('_', ' ', $user->userprofile->profession)) }} @endif
{{ optional($user->userprofile)->gender }}
@if (optional($user->userprofile)->aadhar_number != '') {{ optional($user->userprofile)->aadhar_number }} @else -- @endif
contact information :
@if ($user->userprofile->address == null) -- @else {{ optional($user->userprofile)->address }} @endif
ID: {{ $user->id }}