{{ Form::open(['route' => ['projects.comments.store', $project]]) }}
{!! FormField::textarea('body', ['required' => true, 'label' => false, 'placeholder' => __('comment.create_text')]) !!}
{{ Form::submit(__('comment.create'), ['class' => 'btn btn-success btn-block']) }}
{{ Form::close() }} @foreach($comments as $comment)
{{ $comment->created_at }} {{ $comment->creator->name }} {{ link_to_route('projects.comments.index', __('app.edit'), [$project, 'action' => 'comment-edit', 'comment_id' => $comment->id], ['id' => 'edit-comment-'.$comment->id, 'class' => 'small pull-right', 'title' => __('comment.edit')]) }} {!! nl2br($comment->body) !!}
@endforeach