@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
@if (!$contact->email || !filter_var($contact->email, FILTER_VALIDATE_EMAIL))
{!! Form::editor('message', null, ['without-buttons' => true, 'class' => 'form-control']) !!}
{{ trans('plugins/contact::contact.send') }}
@endif