{!! Form::text('name') -> label(trans('comments::comments.label.name')) -> required() -> placeholder(trans('comments::comments.placeholder.name'))!!}
{!! Form::datetime('comment_date') -> label(trans('comments::comments.label.comment_date')) -> required() -> placeholder(trans('comments::comments.placeholder.comment_date'))!!}
{!! Form::text('comment_message') -> label(trans('comments::comments.label.comment_message')) -> required() -> placeholder(trans('comments::comments.placeholder.comment_message'))!!}
{!! $comments->files('file') ->mime(config('filer.allowed_extensions')) ->url($comments->getUploadUrl('file')) ->dropzone()!!}
{!! $comments ->files('file') ->editor()!!}