Old UniVate Website
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

contact.blade.php 701B

123456789101112131415161718192021222324252627282930
  1. <html>
  2. <head>
  3. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Calibri">
  4. <style>
  5. body {
  6. font-family:Calibri;
  7. }
  8. </style>
  9. </head>
  10. <body>
  11. <h3>Message from Contact Page of www.univateproperties.co.za</h3>
  12. <hr>
  13. <p>Name : {{ $contact->name }}</p>
  14. <p>Email : {{ $contact->email }}</p>
  15. <p>Contact Number : {{ $contact->cell }}</p>
  16. <p>Message</p>
  17. <p>{{ $contact->message }}</p>
  18. <p>Regards,<br>
  19. The Uni-Vate Properties Team
  20. </p>
  21. <img src="https://www.univateproperties.co.za/images/signature.png" />
  22. </body>
  23. </html>