Old UniVate Website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

interest-in-residential-property.blade.php 3.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <!DOCTYPE html>
  2. <html lang="en-gb" dir="ltr"
  3. class='com_content view-article itemid-122 j38 mm-hover'>
  4. <head>
  5. @extends('master')
  6. <link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
  7. <title>Uni-vate Properties | Interested</title>
  8. <link rel="stylesheet" href="css/style.css">
  9. </head>
  10. <body>
  11. @include('partials.menu')
  12. <div style="padding-left:0 !important;padding-right:0 !important;width: 100% !important;max-width: 100% !important;" id="t3-mainbody" class="t3-mainbody">
  13. <!-- MAIN CONTENT -->
  14. <br>
  15. <a href="/residential-property/{{ $property->id }}"><button style="margin-left:auto;margin-right:auto;display:block;background: #073364;border-radius: 3rem;"><i class="fa fa-caret-square-o-left" aria-hidden="true"></i> Back</button></a>
  16. <form id="mainForm" method="POST" action="/interest-in-residential-property/{{ $property->id }}" accept-charset="UTF-8" enctype="multipart/form-data">
  17. <h4 style="text-align:center;">Property Information</h4>
  18. <div class="row">
  19. <div class="large-4 columns">
  20. <label style="font-weight:bolder;">Property Name</label>
  21. {{ $property->name }}
  22. </div>
  23. <div class="large-4 columns">
  24. <label style="font-weight:bolder;">Region & Town</label>
  25. {{ ucfirst(trans($property->region)) }} | {{ $property->town }}
  26. </div>
  27. <div class="large-4 columns">
  28. <label style="font-weight:bolder;">Price</label>
  29. {{ $property->price }}
  30. </div>
  31. </div>
  32. <br>
  33. <div class="row">
  34. <div class="large-12 columns">
  35. <label style="font-weight:bolder;">Description</label>
  36. {{ $property->description }}
  37. </div>
  38. </div>
  39. <hr>
  40. <p style="text-align:center;">Please submit your contact details and a Uni-Vate agent will be in contact with you shortly to assist with the property that you are interested in.</p>
  41. <div class="row">
  42. <div class="large-6 columns">
  43. <label>Name</label>
  44. {{ Form::text('name') }}
  45. </div>
  46. <div class="large-6 columns">
  47. <label>Email</label>
  48. {{ Form::email('email') }}
  49. </div>
  50. </div>
  51. <div class="row">
  52. <div class="large-6 columns">
  53. <label>Mobile</label>
  54. {{ Form::text('mobile') }}
  55. </div>
  56. <div class="large-6 columns">
  57. <label>Telephone</label>
  58. {{ Form::text('phone') }}
  59. </div>
  60. </div>
  61. <div class="row">
  62. <button style="margin-left:auto;margin-right:auto;display:block;background: #083463;" id="submit" type="submit" class="brochure">SEND</button>
  63. </div>
  64. </form>
  65. </div>
  66. @include('partials.footer')
  67. </body>
  68. </html>