• {{ __('Admin') }}
  • {{ __('Westlinks Support') }}
  • Westlinks Support

    This product is fully supported by Westlinks Online, LLC. Support staff are available to answer questions and help to solve any issues that may come up while using the product.

    @if(\Auth::user()->role->name == 'Administrator' || \Auth::user()->role->name == 'Manager')

    Fill out the form below to create a support ticket. Support staff will respond within 24 hours, usually within the same day. For urgent issues that need immediate response, call Westlinks Online directly at (929) 325-1800.

    @endif @if(\Auth::user()->role->name == 'Administrator' || \Auth::user()->role->name == 'Manager')

    Please contact your administrator to report any issues with this product.

    @endif
    @if(\Auth::user()->role->name == 'su' || \Auth::user()->role->name == 'Manager')

    Create Support Ticket

    {!! Form::open(['url' => '/help/createTicket']) !!} {{ 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() !!}
    @endif
    @endsection