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.

commercial.blade.php 6.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. @extends('master')
  2. @section('title', 'Commercial' )
  3. @section('description', 'Uni-Vate Properties provides clients with a simple and efficient way to list and sell or rent their commercial property.')
  4. @section('keywords', 'where to sell my commercial property, where to place my property for rent, free property listing sites, Uni-Vate Properties, estate agent services')
  5. @section('content')
  6. <div class="container">
  7. <div class="row">
  8. <div class="col-md-12">
  9. <h1 class="my-4">Commercial Properties</h1>
  10. </div>
  11. </div>
  12. <div class="row">
  13. <div class="col-md-12">
  14. <form id="mainForm" method="POST" action="/commercial-results" 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="Commercial">Commercial</option>
  81. <option value="Industrial">Industrial</option>
  82. <option value="Vacant land">Vacant land</option>
  83. <option value="Retail">Retail</option>
  84. </select>
  85. </div>
  86. </div>
  87. <div class="form-group">
  88. <button class="btn btn-blue" type="submit">Search</button>
  89. </div>
  90. </form>
  91. </div>
  92. </div>
  93. <div class="row my-5">
  94. <div class="col-md-6">
  95. <p class="text-center"><img class="img-fluid" src="{{ asset('/images/commercial.jpg') }}" alt="Residential"></p>
  96. </div>
  97. <div class="col-md-6">
  98. <h2>About Commercial Properties</h2>
  99. <p>
  100. Commercial properties are characteristically any larger properties that generate profit through leasing or rental activities. These properties are typically used to conduct business and provide companies with cut-and-dry leasing agreements, which keep their involvement in the maintenance of the property to a minimum, so they may focus on the growth of their company.
  101. </p>
  102. <p>
  103. Uni-Vate Properties seeks out professional, clean spaces for such companies and acts as mediator between the landlord/-lady and the tenants. Uni-Vate Properties provides value-adding service to clients and conducts business with a high standard and integrity.
  104. </p>
  105. <p>
  106. Wish to advertise your commercial property? <a href="/list-commercial-rental">Click here</a> to rent out. <a href="/list-commercial-sale">Click here</a> to sell.
  107. </p>
  108. </div>
  109. </div>
  110. </div>
  111. @stop