@if(session('success'))
{{ session('success') }}
@endif
Message
{{ $contact->status_label }}
From
{{ $contact->name }}
Email
{{ $contact->email }}
@if($contact->phone)
Phone
{{ $contact->phone }}
@endif @if($contact->organization)
Organization
{{ $contact->organization }}
@endif
Source
{{ str_replace('_', ' ', $contact->source) }}
Message
{{ $contact->message ?: '(No message provided.)' }}
Manage status
@csrf @method('PUT')

Received
{{ $contact->created_at?->format('M j, Y g:i A') }}
@if($contact->read_at)
First read
{{ $contact->read_at?->format('M j, Y g:i A') }}
@endif @if($contact->responded_at)
Resolved
{{ $contact->responded_at?->format('M j, Y g:i A') }}
@endif @if($contact->ip_address)
IP address
{{ $contact->ip_address }}
@endif
@csrf @method('DELETE')