@extends('user_app') @section('center_content')
{!! 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']) !!}
{!! Form::close() !!}
@forelse( $activities as $activity ) @include('stream-laravel::render_activity', ['activity' => $activity]) @empty
Sin actividad
@endforelse
@endsection