Update contact view

This commit is contained in:
Daniel Supernault 2019-06-18 18:39:46 -06:00
parent fbf483366c
commit 427c4320c8
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -9,10 +9,14 @@
<section>
@auth
<p class="lead">
@if(filter_var(config('instance.email'), FILTER_VALIDATE_EMAIL) == true)
You can contact the admins by sending an email to {{config('instance.email')}} or using the form below.
@else
@if(config('instance.email') && config('instance.contact.enabled'))
You can contact the admins by sending an email to <span class="font-weight-bold">{{config('instance.email')}}</span> or by using the form below.
@elseif(config('instance.email') && !config('instance.contact.enabled'))
You can contact the admins by sending an email to <span class="font-weight-bold">{{config('instance.email')}}</span>.
@elseif(!config('instance.email') && config('instance.contact.enabled'))
You can contact the admins by using the form below.
@else
The admins have not set a contact email address.
@endif
</p>
@if(config('instance.contact.enabled'))
@ -34,8 +38,8 @@
<p class="lead">
@if(filter_var(config('instance.email'), FILTER_VALIDATE_EMAIL) == true)
You can contact the admins by sending an email to {{config('instance.email')}}.
@else
The admins have not listed any public email. Please log in to send a message.
@elseif (config('instance.contact.enabled'))
The admins have not set a contact email address. Please log in to send a message.
@endif
</p>
@endauth