Old UniVate Website
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

residential.blade.php 6.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. @extends('master')
  2. @section('title', 'Residential' )
  3. @section('description', 'Uni-Vate Properties provides clients with a simple and efficient way to list and sell or rent their residential property.')
  4. @section('keywords', 'where to sell my residential property, where to place my property for rent, free property listing sites, Uni-Vate Properties, estate agent services, list my rental')
  5. @section('content')
  6. <div class="container">
  7. <div class="row">
  8. <div class="col-md-12">
  9. <h1 class="my-4">Residential Properties</h1>
  10. </div>
  11. </div>
  12. <div class="row">
  13. <div class="col-md-12">
  14. <form id="mainForm" method="POST" action="/residential" accept-charset="UTF-8" enctype="multipart/form-data">
  15. @csrf
  16. <div class="form-group">
  17. <div class="form-check form-check-inline">
  18. <input class="form-check-input" type="radio" name="for" id="forSale" value='Sale'>
  19. <label class="form-check-label mr-3 large-text" for="forSale">
  20. For Sale
  21. </label>
  22. <input class="form-check-input" type="radio" name="for" id="forRent" value='rental'>
  23. <label class="form-check-label large-text" for="forRent">
  24. For Rent
  25. </label>
  26. </div>
  27. </div>
  28. <div class="form-row">
  29. <div class="col-md-3">
  30. <label>Region</label>
  31. <select class="form-control" name="region">
  32. <option value="">Please Select</option>
  33. <option value="">Any</option>
  34. <option value="gauteng">Gauteng</option>
  35. <option value="Kwazulu Natal">Kwazulu Natal</option>
  36. <option value="mpumalanga">Mpumalanga</option>
  37. <option value="north west">North West</option>
  38. <option value="free state">Free State</option>
  39. <option value="eastern cape">Eastern Cape</option>
  40. <option value="western cape">Western Cape</option>
  41. <option value="northern cape">Northern Cape</option>
  42. <option value="limpopo">Limpopo</option>
  43. </select>
  44. </div>
  45. <div class="col-md-3">
  46. <label>Town</label>
  47. <select class="form-control" data-trigger="" name="town">
  48. <option placeholder="" value="">Please Select</option>
  49. <option value="">Any</option>
  50. <option value="Pretoria">Pretoria</option>
  51. <option value="Johannesburg">Johannesburg</option>
  52. <option value="Centurion">Centurion</option>
  53. <option value="Durban">Durban</option>
  54. <option value="Cape Town">Cape Town</option>
  55. <option value="Knysna">Knysna</option>
  56. <option value="Durban">Sedgefield</option>
  57. <option value="Midrand">Midrand</option>
  58. </select>
  59. </div>
  60. <div class="col-md-3">
  61. <label>Suburb</label>
  62. <select class="form-control" data-trigger="" name="surburb">
  63. <option placeholder="" value="">Please Select</option>
  64. <option value="">Any</option>
  65. <option value="Carlswald">Carlswald</option>
  66. <option value="Silver Lakes">Silver Lakes</option>
  67. <option value="Mooikloof">Mooikloof</option>
  68. <option value="Monument Park">Monument Park</option>
  69. <option value="Zwavelpoort">Zwavelpoort</option>
  70. <option value="Pretoria North">Pretoria North</option>
  71. <option value="Pretoria East">Pretoria East</option>
  72. <option value="Pretoria South">Pretoria South</option>
  73. </select>
  74. </div>
  75. <div class="col-md-3">
  76. <label>Property Type</label>
  77. <select class="form-control" data-trigger="" name="propertType">
  78. <option placeholder="" value="">Please Select</option>
  79. <option value="">Any</option>
  80. <option value="Vacant land">Vacant land</option>
  81. <option value="Flat">Flat</option>
  82. <option value="Townhouse">Townhouse</option>
  83. <option value="Agriculture">Agriculture</option>
  84. <option value="House">House</option>
  85. <option value="Home in Estate">Home in Estate</option>
  86. </select>
  87. </div>
  88. </div>
  89. <div class="form-group mt-4">
  90. <button class="btn btn-blue" type="submit">Search</button>
  91. </div>
  92. </form>
  93. </div>
  94. </div>
  95. <div class="row my-5">
  96. <div class="col-md-6">
  97. <p class="text-center"><img class="img-fluid" src="{{ asset('/images/residential.jpg') }}" alt="Residential"></p>
  98. </div>
  99. <div class="col-md-6">
  100. <h2>About Residential</h2>
  101. <p>
  102. Uni-Vate Properties understands the necessity in property-seekers to find that perfect fit; a home that meets, and exceeds the individual's needs. That is why, our dedicated team sources a range of property types, whether that home is a rental option near a University for a student just starting out, or a family home fit for entertaining.
  103. </p>
  104. <p>
  105. Looking to sell your residential property, instead? Uni-Vate Properties prides itself on professionalism and the right expertise, to help you secure the best possible deal for your home.
  106. </p>
  107. <p>
  108. <a href="/list-residential-rental">Click here</a> to rent out. <a href="/list-residential-sale">Click here</a> to sell
  109. </p>
  110. </div>
  111. </div>
  112. </div>
  113. @stop