@extends('layouts/contentNavbarLayout') @section('title', 'Edit Contact Message') @section('content')
@csrf @method('PUT')
Original Message
@if($contact->phone)
@endif

{{ $contact->message }}

Received on {{ $contact->created_at->format('F d, Y \a\t h:i A') }} ({{ $contact->created_at->diffForHumans() }})
Admin Response & Status
@error('status')
{{ $message }}
@enderror
@error('admin_response')
{{ $message }}
@enderror
This response will be recorded for internal tracking. To actually respond to the customer, use the email link in the sidebar or copy this text to your email client.
@if($contact->admin_response)
Previous Response

{{ $contact->admin_response }}


Responded by {{ $contact->respondedBy->name ?? 'Unknown Admin' }} on {{ $contact->responded_at ? $contact->responded_at->format('F d, Y \a\t h:i A') : 'Unknown date' }}
@endif
Cancel
Quick Actions
Reply via Email @if($contact->phone) Call Customer @endif
Customer Information
{{ strtoupper(substr($contact->name, 0, 1)) }}
{{ $contact->name }}
Customer
Email {{ $contact->email }}
@if($contact->phone)
Phone {{ $contact->phone }}
@endif
Status Guide
Pending New message, not yet reviewed
In Progress Currently being handled
Resolved Issue resolved, awaiting confirmation
Closed Case closed, no further action needed
Name: {{ $contact->name }} Email: {{ $contact->email }} @if($contact->phone)Phone: {{ $contact->phone }}@endif Subject: {{ $contact->subject }} Message: {{ $contact->message }}
@endsection @section('page-script') @endsection