@extends('layouts.usermaster') @section('styles') @endsection @section('content')
@if($holidays->isNotEmpty() && setting('24hoursbusinessswitch') != 'on') @foreach ($holidays as $anct) @endforeach @else @php $createdtime = now(); @endphp @foreach(bussinesshour() as $bussiness) @if($createdtime->timezone(setting('default_timezone'))->format('D') == $bussiness->weeks) @if(strtotime($bussiness->starttime) <= strtotime($createdtime->timezone(setting('default_timezone'))->format('h:i A')) && strtotime($bussiness->endtime) >= strtotime($createdtime->timezone(setting('default_timezone'))->format('h:i A'))|| $bussiness->starttime == "24H") @else @endif @endif @endforeach @endif

{{lang('Guest Ticket')}}

@csrf
@if(setting('cc_email') == 'on')
{{lang('You are allowed to send only a single CC.')}}
@error('ccmail') {{ lang($message) }} @enderror
@endif
{{lang('Maximum')}}{{setting('TICKET_CHARACTER')}}{{lang('Characters')}}
@if(setting('ENVATO_ON') == 'on')
@endif @if($customfields->isNotEmpty()) @foreach($customfields as $customfield)
@if($customfield->fieldtypes == 'text') @endif @if($customfield->fieldtypes == 'email') @endif @if($customfield->fieldtypes == 'textarea') @endif @if($customfield->fieldtypes == 'checkbox') @php $coptions = explode(',', $customfield->fieldoptions) @endphp @foreach($coptions as $key => $coption) @endforeach @endif @if($customfield->fieldtypes == 'select') @endif @if($customfield->fieldtypes == 'radio') @php $roptions = explode(',', $customfield->fieldoptions) @endphp @foreach($roptions as $roption) @endforeach @endif
@endforeach @endif
@if(setting('GUEST_FILE_UPLOAD_ENABLE') == 'yes')
{{lang('The file size should not be more than', 'filesetting')}} {{setting('FILE_UPLOAD_MAX')}}{{lang('MB', 'filesetting')}}
@endif @if(setting('CAPTCHATYPE')=='manual') @if(setting('RECAPTCH_ENABLE_GUEST')=='yes')
@error('captcha') {{ lang($message) }} @enderror
{!! captcha_img('') !!}
@endif @endif @if(setting('CAPTCHATYPE')=='google') @if(setting('RECAPTCH_ENABLE_GUEST')=='yes')
@if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
@endif @endif
@php $addspace = \App\Models\AddSpace::where('status',1)->get(); @endphp @if($addspace && $addspace->isNotEmpty())
@endif
@endsection @section('scripts') @vite(['resources/assets/js/support/support-sidemenu.js']) @vite(['resources/assets/js/select2.js']) @endsection