File: //var/www/html/punjabcabs/resources/views/emails/contact.blade.php
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<title>{{ config('app.name', 'Laravel') }}</title>
</head>
<body>
<p>The Following Details Are registered</p>
<div>
<p><b>Name:</b> {{ $user['name'] }}</p>
<p><b>Email:</b> {{ $user['email'] }}</p>
<p><b>Phone Number:</b> {{ $user['phone'] }}</p>
<p><b>Message:</b> {{ $user['content'] }}</p>
</div>
</body>
</html>