@extends('emails.layouts.base') @section('title', __('Contact Reply')) @section('header', __('Contact Reply')) @section('content')

{{ __('Hello, :name', ['name' => $contact->full_name ?? __('User')]) }}

{{ __('We have received your message, and here is our reply:') }}

{{ __('Your Message:') }} {!! nl2br(e($contact->content)) !!}
{{ __('Our Reply:') }} {!! nl2br(e($contact->reply)) !!}

{{ __('Thank you for contacting us!') }}

@endsection