@include('global.header-links') @include('partials.sidebar')
@include('partials.header')

User Details

@if (session()->has('message'))
{{ session()->get('message') }}
@elseif(session()->has('error'))
{{ session()->get('error') }}
@endif
{{ $user->profile->first_name ?? '--' }}
{{ ucfirst($user->profile->first_name ?? '--') }} {{ $user->profile->last_name ?? '--' }}
@if ($user->status == 1) Deactivate Account @else Activate Account @endif
{{ $user->profile->weight ?? 'N/A' }}
Weight
{{ $user->profile->height ?? 'N/A' }}
Height
{{ $user->profile->fitness_experience ?? 'N/A' }}
Fitness Experience
{{ $user->profile->difficulties ?? 'N/A' }}
Difficulty Level
{{--
@if ($user->profile->userinterest) @foreach ($user->profile->userinterest as $intrest)
{{ ucfirst($intrest->interest->name ?? '--') }}
@endforeach @else

--

@endif
Interests
--}} {{--
{{ $user->goal->activity_level ?? 'N/A' }}
Activity Level
--}}
@yield('content')
@include('partials.footer')
@include('global.footer-links')