@section('content')

{{ $user->username }}'s Profile

{{ $user->fullname }} Newbie Edit

@if($user->location!='')

{{ $user->location }}

@endif @if($user->website!='')

{{ $user->website }}

@endif

View public profile

@if($user->about!='')

About me Edit

{{ $user->about }}

@endif

My Latest Questions @if($questions->count() > 5)View all@endif

@if(!$questions->isEmpty()) @foreach($questions as $question) @endforeach @else

No items yet.

@endif

My Latest Answers @if($answers->count() > 5)View all@endif

@if( !$answers->isEmpty() ) @foreach($answers as $answer) @endforeach @else

No items yet.

@endif
@endsection