{{-- resources/views/admin/support/show.blade.php --}} {{-- Support ticket detail view with reply form --}} {{-- Controller: Admin\SupportController@show / @reply --}} @extends('layouts.admin') @section('title', 'Support Ticket') @section('page_title', 'Support Ticket') @section('page_css') @endsection @section('content') {{-- Ticket Details Card --}}

Ticket Information

{{ ucfirst($ticket->status) }}
From {{ $ticket->name }}
Email {{ $ticket->email }}
Type {{ ucfirst($ticket->type) }}
Date {{ $ticket->created_at->format('d M Y H:i') }}
Message
{{ $ticket->message }}
{{-- Reply Form --}}

Reply to Ticket

@csrf
@error('reply_message') {{ $message }} @enderror
Back to List
@endsection