1. {{-- {{ __('Dashboard') }} --}}
  2. {{ __('Communications') }}
  3. {{ __('Send a message') }}

Send a message to the convention.
The Message the Convention feature is currently being worked on by the developer and is unavailable. Will return soon. {!! Form::open(['url' => '/support/create-ticket']) !!} {{ Form::hidden('form_id', 1)}} @if(isset(Auth::user()->id)) {{ Form::hidden('user_id', Auth::user()->id)}} @else {{ Form::hidden('user_id', 0)}} @endif {{ Form::hidden('application_id', env('APPLICATION_ID'))}}
{{ Form::label('email', '*Your Email:')}} {{ Form::email('email', Auth::user()->email, ['class' => 'form-control', 'readonly' => true])}}
{{ Form::label('subject', '*Subject: ')}} {{ Form::text('subject', old('subject'), ['required', 'class' => 'form-control']) }}

Please be as specific as possible. If you are reporting an error, tell us what page you were on, what you were trying to do, what happened, and what you expected to happen.

{{ Form::label('body', '*Description: ')}} {{ Form::textarea('body', old('body'), ['required', 'class' => 'form-control', 'rows'=>5]) }}
{!! Form::close() !!}