@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->name}}
@if($user->status == 1) Deactivate Account @else Activate Account @endif
{{--
{{$user->physique->weight}}lbs
--}}
{{--
Initial Weight
--}}
{{--
{{$user->physique->weight_now}}lbs
--}}
{{--
Current Weight
--}}
@yield('content')
@include('partials.footer')
@include('global.footer-links')