123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- @extends('master')
-
- @section('title', 'Commercial' )
-
- @section('description', 'Uni-Vate Properties provides clients with a simple and efficient way to list and sell or rent their commercial property.')
-
- @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')
-
- @section('content')
- <div class="container">
- <div class="row">
- <div class="col-md-12">
- <h1 class="my-4">Commercial Properties</h1>
- </div>
- </div>
- <div class="row">
- <div class="col-md-12">
- <form id="mainForm" method="POST" action="/commercial-results" accept-charset="UTF-8" enctype="multipart/form-data">
- @csrf
-
- <div class="form-group">
- <div class="form-check form-check-inline">
- <input class="form-check-input" type="radio" name="for" id="forSale" value='Sale'>
- <label class="form-check-label mr-3 large-text" for="forSale">
- For Sale
- </label>
- <input class="form-check-input" type="radio" name="for" id="forRent" value='rental'>
- <label class="form-check-label large-text" for="forRent">
- For Rent
- </label>
- </div>
- </div>
-
- <div class="form-row">
- <div class="col-md-3">
- <label>Region</label>
- <select class="form-control" name="region">
- <option value="">Please Select</option>
- <option value="">Any</option>
- <option value="gauteng">Gauteng</option>
- <option value="Kwazulu Natal">Kwazulu Natal</option>
- <option value="mpumalanga">Mpumalanga</option>
- <option value="north west">North West</option>
- <option value="free state">Free State</option>
- <option value="eastern cape">Eastern Cape</option>
- <option value="western cape">Western Cape</option>
- <option value="northern cape">Northern Cape</option>
- <option value="limpopo">Limpopo</option>
- </select>
- </div>
- <div class="col-md-3">
- <label>Town</label>
- <select class="form-control" data-trigger="" name="town">
- <option placeholder="" value="">Please Select</option>
- <option value="">Any</option>
- <option value="Pretoria">Pretoria</option>
- <option value="Johannesburg">Johannesburg</option>
- <option value="Centurion">Centurion</option>
- <option value="Durban">Durban</option>
- <option value="Cape Town">Cape Town</option>
- <option value="Knysna">Knysna</option>
- <option value="Durban">Sedgefield</option>
- <option value="Midrand">Midrand</option>
- </select>
- </div>
- <div class="col-md-3">
- <label>Suburb</label>
- <select class="form-control" data-trigger="" name="surburb">
- <option placeholder="" value="">Please Select</option>
- <option value="">Any</option>
- <option value="Carlswald">Carlswald</option>
- <option value="Silver Lakes">Silver Lakes</option>
- <option value="Mooikloof">Mooikloof</option>
- <option value="Monument Park">Monument Park</option>
- <option value="Zwavelpoort">Zwavelpoort</option>
- <option value="Pretoria North">Pretoria North</option>
- <option value="Pretoria East">Pretoria East</option>
- <option value="Pretoria South">Pretoria South</option>
- </select>
- </div>
- <div class="col-md-3">
- <label>Property Type</label>
- <select class="form-control" data-trigger="" name="propertType">
- <option placeholder="" value="">Please Select</option>
- <option value="">Any</option>
- <option value="Commercial">Commercial</option>
- <option value="Industrial">Industrial</option>
- <option value="Vacant land">Vacant land</option>
- <option value="Retail">Retail</option>
- </select>
- </div>
- </div>
- <div class="form-group">
- <button class="btn btn-blue" type="submit">Search</button>
- </div>
- </form>
- </div>
- </div>
- <div class="row my-5">
- <div class="col-md-6">
- <p class="text-center"><img class="img-fluid" src="{{ asset('/images/commercial.jpg') }}" alt="Residential"></p>
- </div>
- <div class="col-md-6">
- <h2>About Commercial Properties</h2>
- <p>
- 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.
- </p>
- <p>
- 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.
- </p>
- <p>
- 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.
- </p>
- </div>
- </div>
- </div>
- @stop
|