== 'required|min:2|max:64', 'email' => 'required|email|min:2|max:64', 'comments' => 'required|min:5', ], [ 'comments' => ['required' => __("Please actually write something to us...")] ], [ 'first_name' => __("name"), ]); // Notify the 'contact-team' group with 'backend:contact-form' mail template // $group = \Backend\Models\UserGroup::where('code', 'contact-team')->first(); if (!$group) { throw new ApplicationException(__("Sorry, this contact form is not enabled: We cannot receive emails at the moment, please try using another method.")); } Mail::sendTo( $group->users->pluck('full_name', 'email')->all(), 'backend:contact-form', $data ); $this['isSubmit'] = true; $this['emailAddress'] = post('email'); } ?> ==

Drop Us a Line

Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

{% if isSubmit %} {% else %}
{% endif %}