{{-- resources/views/support/create.blade.php --}} @extends('layouts.app') @section('title', 'New Support Ticket') @section('page_title', 'New Support Ticket') @section('page_subtitle', 'Get help from our team') @section('content')
{{-- Form --}}
Describe Your Issue
@csrf
@error('subject')
{{ $message }}
@enderror
@error('category')
{{ $message }}
@enderror
@error('priority')
{{ $message }}
@enderror
@error('body')
{{ $message }}
@enderror
Screenshots, PDFs or text files. Max 5MB each.
Cancel
{{-- Tips --}}
Before you submit
Include as much detail as possible
Attach screenshots if relevant
Include reservation or invoice numbers
Describe the steps to reproduce the issue
Response Times
@foreach([ ['Urgent', '#991b1b', '< 2 hours'], ['High', '#ef4444', '< 8 hours'], ['Medium', '#f59e0b', '< 24 hours'], ['Low', '#64748b', '< 48 hours'], ] as [$label, $color, $time])
{{ $label }}
{{ $time }}
@endforeach
@endsection