@if ($contact->replies->isNotEmpty())
@foreach ($contact->replies as $reply)
{{ trans('plugins/contact::contact.tables.time') }}: {{ BaseHelper::formatDateTime($reply->created_at) }}
{{ trans('plugins/contact::contact.tables.content') }}:
{!! BaseHelper::clean($reply->message) !!}
@endforeach
@else
{{ trans('plugins/contact::contact.no_reply') }}
@endif
{!! Form::editor('message', null, ['without-buttons' => true, 'class' => 'form-control']) !!}
{{ trans('plugins/contact::contact.send') }}
@endif