@php $websocketConfig = getIpAndPort(); $languageCode = session('locale') ?? auth()->user()->default_language; @endphp @extends('layouts.support') @section('title') {{__("words.Support")}} @endsection @section('page_title') Support @endsection @section('content') @php $timezone = auth()->user()->getTimezone(); @endphp @include("loader.loader")

{{__("words.Topics")}}

@php $status = !empty(request()->get('status')) ? request()->get('status') : \App\Models\SupportTopic::STATUS_OPEN; $type = !empty(request()->get('type')) ? request()->get('type') : \App\Models\SupportTopic::TYPE_GENERAL_SUPPORT; @endphp
{{__("words.Reason")}}: {{$firstOpenTopic->subject}} @if($firstOpenTopic->status == 1)
@endif

Notes

@if($type== \App\Models\SupportTopic::TYPE_GENERAL_SUPPORT)

It may take up to 72 hours to receive a response. We appreciate your patience during this time.

Additionally, you are welcome to send a single message initially.

@else

File Upload: Format in JPG, Png, Word or PDF up to 5MB.

You can attach up to 5 files.

It may take some time for your request or documents to be reviewed, usually up to 72 hours.

@endif
@push('page_script') @endpush @endsection