{!! $comment['id'] !!}
{!! $comment['userid'] !!}
{!! $comment['object_id'] !!}
{!! $comment['comment'] !!}
{!! $comment['images'] !!}
{!! $comment['slug'] !!}
{!! $comment['created_at'] !!}
{!! $comment['updated_at'] !!}
{!! $comment['deleted_at'] !!}
{!! Form::select('userid')
-> options(trans('comment::comment.options.userid'))
-> label(trans('comment::comment.label.userid'))
-> placeholder(trans('comment::comment.placeholder.userid'))!!}
{!! Form::select('object_id')
-> options(trans('comment::comment.options.object_id'))
-> label(trans('comment::comment.label.object_id'))
-> placeholder(trans('comment::comment.placeholder.object_id'))!!}
{!! Form::textarea ('comment')
-> label(trans('comment::comment.label.comment'))
-> placeholder(trans('comment::comment.placeholder.comment'))!!}