1. {{ __('Help Center') }}
  2. {{ __('Contact the Convention') }}

@if($settings->where('key', 'HAS_ZENDESK')->first()->value == 1)

Messages Received

@if($messages == "")
Zendesk Not Configured
@else @foreach($messages as $message)
{{$message->subject}}
Received: {{date('M d h:i A', strtotime($message->created_at))}}
Message: {{$message->message }}
@endforeach @endif
@endif

Contact {{ $settings->where('key', 'EVENT_NAME')->first()->value }}

@if(env('APPLICATION_ID') == 333)

Contact The Committee

Use this form to send a message directly to a committee volunteer. They will do their best to assist you as quickly as possible.

For more urgent matters, you can call our message line at {{ localize_us_number($settings->where('key', 'ORG_PHONE')->first()->value) }} @else

Contact The Convention

Use this form to send a message directly to a convention committee volunteer. They will do their best to assist you as quickly as possible.

For more urgent matters, you can call our message line at {{ $settings->where('key', 'ORG_PHONE')->first()->value }} @endif

@include('partials._contactus')
@livewire('footer-links')