@extends('emails.layouts.main') @section('title', 'Help Center Contact Form') @section('content') {{-- Salutation --}}

Help Center Contact Request

{{-- Email body paragraph --}}

You have received a new message from the Help Center contact form.

{{-- User Information Section --}}

User Information

{{ $user_name }}

{{ $user_email }}

{{ $user->id }}

{{ ucfirst(strtolower($user->role->value ?? 'User')) }}

{{-- Message Details Section --}}

Message Details

{{ $subject }}

{{-- Reply Button --}}
Reply to {{ $user_name }}
{{-- Footer Info --}}

This email was sent from the {{ config('app.name') }} Help Center.
Timestamp: {{ now()->format('F j, Y \a\t g:i A T') }}

@endsection