HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ip-172-26-0-120 6.17.0-1009-aws #9~24.04.2-Ubuntu SMP Fri Mar 6 23:50:29 UTC 2026 x86_64
User: ubuntu (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: //var/www/html/orbidirectory.com/resources/views/emails/lead_submitted.blade.php
<!DOCTYPE html>
<html>

<head>
    <title>Lead Submitted</title>
</head>

<body>
    <h1>New Lead Submitted</h1>
    <p><strong>Name:</strong> {{ $orbiLeads->name }}</p>
    <p><strong>Phone Number:</strong> {{ $orbiLeads->phone_number }}</p>
    <p><strong>Email:</strong> {{ $orbiLeads->email }}</p>
    <p><strong>Vehicle Type:</strong> {{ $orbiLeads->vehicleType->name }}</p>
    <p><strong>Number of Passengers:</strong> {{ $orbiLeads->number_of_passenger }}</p>
    <p><strong>Pickup Location:</strong> {{ $orbiLeads->pickup }}</p>
    <p><strong>Drop Location:</strong> {{ $orbiLeads->drop }}</p>
    <p><strong>Travel Date:</strong> {{ $orbiLeads->travel_date }}</p>
    <p><strong>Description:</strong> {{ $orbiLeads->description }}</p>
</body>

</html>