@extends('layouts.app')

@section('content')
    <h2>New Contact Enquiry</h2>

    <p><strong>Name:</strong> {{ $details['name'] }}</p>
    <p><strong>Email:</strong> {{ $details['email'] }}</p>
    <p><strong>Phone:</strong> {{ $details['country_code'] }} {{ $details['phone'] }}</p>
    <p><strong>Subject:</strong> {{ $details['subject'] }}</p>

    <p><strong>Message:</strong><br>
        {{ $details['message'] }}</p>

    <p>Sent on: {{ now()->format('d M Y, h:i A') }}</p>

@endsection
