@extends('layouts.adminmaster') @section('styles') @endsection @section('content')

{{lang('New Ticket')}}

@honeypot
@error('email') {{ lang($message) }} @enderror
@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')}}
@error('subject') {{ lang($message) }} @enderror
@error('category') {{ lang($message) }} @enderror
@if($customfields->isNotEmpty()) @foreach($customfields as $customfield)
@if($customfield->fieldtypes == 'text') fieldrequired == '1' ? 'required' : ''}}> @endif @if($customfield->fieldtypes == 'email') fieldrequired == '1' ? 'required' : ''}}> @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
@error('message') {{ lang($message) }} @enderror
{{lang('The file size should not be more than', 'filesetting')}} {{setting('FILE_UPLOAD_MAX')}}{{lang('MB', 'filesetting')}}
@endsection @section('scripts') @endsection