@extends('mail.template')
@section('title', 'New Contact Form Message')
@section('subtitle', 'We received a new request through the contact form')
@section('content')
Customer Information
Full Name
{{$name ?? 'Not provided'}}
Email
{{$email ?? 'Not provided'}}
Phone
{{$phone ?? 'Not provided'}}
Subject
{{$subject ?? 'Not provided'}}
Message
{{$msg ?? 'Not provided'}}
@endsection
@section('footer-text', 'This message was sent through the PermShield website contact form. To reply, please use the email provided by the customer.')