$errors->first('status')]) aria-label="{{ __('Current status') }}" placeholder="{{ __('What are you up to?') }}" aria-describedby="share-button" type="text"> @error ('status') @enderror

{{ __('My Feed') }}

@if ($loading)
{{ __('Fetching your feed...') }}
@else
@forelse ($posts as $post)

“{{ $post->content }}”

{{ date('n/j/Y \a\t g:i A', strtotime($post->created_at)) }}
@empty

{{ __('Your feed is empty') }}

{{ __('You might want to make some friends...') }}

@endforelse
@endif