{!! Form::open([
'action' => 'PostsController@store'
]) !!}
{!! Form::label('content', 'Comparte algo', ['class' => 'sr-only']) !!}
{!! Form::textarea('content', null, ['class' => 'form-control', 'rows' => 3, 'placeholder' => 'Comparte algo']) !!}
@forelse( $activities as $activity )
@include('stream-laravel::render_activity', ['activity' => $activity])
@empty
@endforelse