@extends('layouts.app') @section('content')
{{$user->username}} @if($owner == true) Settings @elseif ($following == true) @elseif ($following == false) @endif {{-- TODO: Implement action dropdown --}}

{{$user->name}} @if($user->remote_url) REMOTE PROFILE @endif {{$user->bio}}

@if($owner == true) @endif @if($owner && request()->is('*/saved'))

{{__('profile.savedWarning')}}

@endif @if($timeline->count() > 0) @foreach($timeline as $status) @endforeach @else

{{ __('profile.emptyTimeline') }}

@endif
@endsection