@extends('adminlte::page') @section('title', 'Send Mail to Contact') @section('content_header')

Send Mail

@stop @section('content')

Contact Details

Name {{ $contact->first_name }} {{ $contact->last_name }}
Email {{ $contact->email }}
Mobile +{{ $contact->country_code }} {{ $contact->mobile_no }}
Message {{ $contact->message ?? 'N/A' }}
Added At {{ \Carbon\Carbon::parse($contact->created_at)->format('d/m/Y h:i A') }}

Send Email

@csrf
Back to List
@stop @section('js') @endsection