Old UniVate Website
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

contactCommercial.blade.php 737B

1234567891011121314151617181920212223242526272829303132
  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 Commercial Properties Page</h3>
  12. <hr>
  13. <p>Name : {{ $contact->name }}</p>
  14. <p>Email : {{ $contact->email }}</p>
  15. <p>Contact Number : {{ $contact->cell }}</p>
  16. <p>Property : {{ $contact->property }} </p>
  17. <p>Message</p>
  18. <p>{{ $contact->message }}</p>
  19. <p>Regards,<br>
  20. The Uni-Vate Properties Team
  21. </p>
  22. <img src="https://www.univateproperties.co.za/images/signature.png" />
  23. </body>
  24. </html>