Bladeren bron

Update contact view

Daniel Supernault 6 jaren geleden
bovenliggende
commit
427c4320c8
1 gewijzigde bestanden met toevoegingen van 9 en 5 verwijderingen
  1. 9 5
      resources/views/site/contact.blade.php

+ 9 - 5
resources/views/site/contact.blade.php

@@ -9,10 +9,14 @@
   <section>
   <section>
     @auth
     @auth
     <p class="lead">
     <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.
        You can contact the admins by using the form below.
+      @else
+        The admins have not set a contact email address.
       @endif
       @endif
     </p>
     </p>
     @if(config('instance.contact.enabled'))
     @if(config('instance.contact.enabled'))
@@ -34,8 +38,8 @@
     <p class="lead">
     <p class="lead">
       @if(filter_var(config('instance.email'), FILTER_VALIDATE_EMAIL) == true)
       @if(filter_var(config('instance.email'), FILTER_VALIDATE_EMAIL) == true)
         You can contact the admins by sending an email to {{config('instance.email')}}.
         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
       @endif
     </p>
     </p>
     @endauth
     @endauth