Old UniVate Website
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

share-transfer-initiation-for-seller.blade.php 6.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. @extends('master')
  2. @section('title', 'Share Transfer Initiation for Seller')
  3. @section('description', '')
  4. @section('keywords', '')
  5. @section('content')
  6. <div class="container">
  7. <div class="row">
  8. <div class="col-md-12">
  9. <h1 class="my-4">Share Transfer Initiation for Seller</h1>
  10. <p>
  11. Please Complete The Information Below In Order For The Share Block Company To Complete The Agreement Of Sale. Please Return The Completed Form To <a href="mailto:info@univateproperties.co.za">info@univateproperties.co.za</a> the information is needed to complete the agreement and will be kept confidential. Please call (012) 941 8521 should you require any further assistance.
  12. </p>
  13. <p>
  14. 1. WITH RESPECT TO MY TIMESHARE MODULE/WEEK, I CONFIRM THAT:
  15. </p>
  16. </div>
  17. </div>
  18. <div class="row mb-4">
  19. <div class="col-md-12">
  20. <form id="mainForm" method="POST" action="/share-transfer-initiation-for-seller" accept-charset="UTF-8" enctype="multipart/form-data">
  21. @csrf
  22. <div class="form-group row">
  23. <label for="paid" class="col-form-label col-md-8">
  24. 1.1 All Levy Amounts for the current cycle have been paid in full\
  25. </label>
  26. <div class="col-md-4">
  27. <div class="form-check form-check-inline">
  28. <input class="form-check-input" type="radio" name="paid" value='Yes'>
  29. <label class="form-check-label" for="paid">
  30. Yes
  31. </label>
  32. </div>
  33. <div class="form-check form-check-inline">
  34. <input class="form-check-input" type="radio" name="paid" value='No'>
  35. <label class="form-check-label" for="paid">
  36. No
  37. </label>
  38. </div>
  39. </div>
  40. </div>
  41. <hr>
  42. <div class="form-group row">
  43. <label for="spaceBanked" class="col-form-label col-md-8">
  44. 1.2 My week is Space banked for the current year:
  45. </label>
  46. <div class="col-md-2">
  47. <div class="form-check form-check-inline">
  48. <input class="form-check-input" type="radio" name="spaceBanked" value='Yes'>
  49. <label class="form-check-label" for="spaceBanked">
  50. Yes
  51. </label>
  52. </div>
  53. <div class="form-check form-check-inline">
  54. <input class="form-check-input" type="radio" name="spaceBanked" value='No'>
  55. <label class="form-check-label" for="spaceBanked">
  56. No
  57. </label>
  58. </div>
  59. </div>
  60. </div>
  61. <hr>
  62. <div class="form-group row">
  63. <label for="name" class="col-form-label col-md-8">
  64. 1.3 My week is placed for Rental this year
  65. </label>
  66. <div class="col-md-4">
  67. <div class="form-check form-check-inline">
  68. <input class="form-check-input" type="radio" name="rental" value='Yes'>
  69. <label class="form-check-label" for="paidyes">
  70. Yes
  71. </label>
  72. </div>
  73. <div class="form-check form-check-inline">
  74. <input class="form-check-input" type="radio" name="rental" value='No'>
  75. <label class="form-check-label" for="paidno">
  76. No
  77. </label>
  78. </div>
  79. </div>
  80. </div>
  81. <hr>
  82. <div class="form-group row">
  83. <div class="col-md-8">
  84. 1.4 I/We bought the timeshare module/week on the following date:
  85. </div>
  86. <div class="col-md-4">
  87. <input class="form-control" id="datepicker" name="date" />
  88. </div>
  89. </div>
  90. <hr>
  91. <div class="form-group row">
  92. <label for="name" class="col-form-label col-md-8">
  93. 1.5 The Purchase Price for which I/We bought timeshare module/week was:
  94. </label>
  95. <div class="col-md-4">
  96. <input class="form-control" type="text" name="purchasePrice" placeholder="R" />
  97. </div>
  98. </div>
  99. <hr>
  100. <div class="form-group row">
  101. <label for="name" class="col-form-label col-md-8">
  102. 1.6 The Selling Price for the timeshare module/week for which I/We want to sell is: (Including Vat)
  103. </label>
  104. <div class="col-md-4">
  105. <input class="form-control" type="text" name="sellingPrice" placeholder="R" />
  106. </div>
  107. </div>
  108. <hr>
  109. <div class="form-group row">
  110. <label for="name" class="col-form-label col-md-8">
  111. 1.7 Name of Estate Agency:
  112. </label>
  113. <div class="col-md-4">
  114. <input class="form-control" type="text" name="estateAgency" />
  115. </div>
  116. </div>
  117. <hr>
  118. <div class="form-group row">
  119. <label for="name" class="col-form-label col-md-8">
  120. 1.8 Estate Agent’s commission agreed to (state Rand value)
  121. </label>
  122. <div class="col-md-4">
  123. <input class="form-control" type="text" name="commission" placeholder="R" />
  124. </div>
  125. </div>
  126. </form>
  127. <button class="btn btn-blue btn-lg" id="submit" type="submit">SUBMIT</button>
  128. </div>
  129. </div>
  130. </div>
  131. @stop