@extends('admin.account.show') @section('content')

Profile Details

{{ ucfirst($user->profile->first_name ?? '--') }}
{{ ucfirst($user->profile->about ?? '--') }}
@if ($user->userinterest) @foreach ($user->userinterest as $intrest)
{{ ucfirst($intrest->interest->name ?? '--') }}
@endforeach @else

--

@endif
{{ $user->email ?? '--' }}
{{ $user->profile->phone ?? '--' }}
{{ date('F d, Y', strtotime($user->profile->date_of_birth ?? '--')) }}
@endsection