@extends('admin.layouts.app') @section('title', 'View Message') @section('page-title', 'Contact Message') @section('content')

{{ $contact->subject ?? 'No Subject' }}

{{ $contact->created_at->format('F d, Y \a\t H:i') }}

@if($contact->status != 'replied')
@csrf
@endif

From

{{ $contact->name }}

Email

{{ $contact->email }}
@if($contact->phone)

Phone

{{ $contact->phone }}
@endif

Message

{{ $contact->message }}

Back to List Reply via Email
@endsection