DEV Community

Discussion on: Laravel Contact Form With Email

Collapse
 
rizwan_saquib profile image
Saquib Rizwan • Edited

Now create another view, email.blade.php and add the following code in it.

You received a message from : {{ $name }}

<p>
Name: {{ $name }}
</p>

<p>
Email: {{ $email }}
</p>

<p>
Message: {{ $user_message }}
</p>