Old UniVate Website
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

mooikloof-enquiry.blade.php 3.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. @extends('master')
  2. @section('title', 'Mooikloof Enquiry')
  3. @section('description', 'Uni-Vate Properties is a reputable and reliable timeshare reseller, equipped with the best experience and knowledge in providing customers of fast, efficient and personal service.')
  4. @section('keywords', 'Timeshare selling, where to sell my timeshare, Uni-Vate Properties, Uni-Vate timeshare, timeshare for sale, tender weeks available, sell my tender week')
  5. @section('content')
  6. <div class="container">
  7. <div class="row mb-4">
  8. <div class="col-md-12">
  9. <h1 class="my-4">{{ $unit->name }}</h1>
  10. </div>
  11. <div class="col-md-6">
  12. {!! $unit->description !!}
  13. </div>
  14. <div class="col-md-6">
  15. <form id="mainForm" method="POST" action="/mooikloof-enquiry/{{ $unit->id }}" accept-charset="UTF-8" enctype="multipart/form-data">
  16. @csrf
  17. <div class="form-row">
  18. <div class="col-md-6">
  19. <lable for="unit">Unit</lable>
  20. <input class="form-control" type="text" id="unit" name="unit" value="{{ $unit->unit }}" disabled>
  21. </div>
  22. <div class="col-md-6">
  23. <lable for="resortWeek">Price</lable>
  24. <input class="form-control" type="text" id="price" name="price" value="{{ $unit->price }}" disabled>
  25. </div>
  26. </div>
  27. <div class="form-row">
  28. <div class="col-md-6">
  29. <lable for="module">Size</lable>
  30. <input class="form-control" type="text" id="size" name="size" value="{{ $unit->size }}" disabled>
  31. </div>
  32. <div class="col-md-6">
  33. <lable for="price">Suburb</lable>
  34. <input class="form-control" type="text" name="surburb" id="surburb" value="{{ $unit->surburb }}" disabled>
  35. </div>
  36. </div>
  37. <div class="form-row">
  38. <div class="col-md-12">
  39. <input class="form-control" type="text" name="name" placeholder="Name">
  40. </div>
  41. </div>
  42. <div class="form-row">
  43. <div class="col-md-12">
  44. <input class="form-control" type="text" name="mobile" placeholder="Contact Number">
  45. </div>
  46. </div>
  47. <div class="form-row">
  48. <div class="col-md-12">
  49. <input class="form-control" type="email" name="email" placeholder="Email">
  50. </div>
  51. </div>
  52. <button class="btn btn-blue even-width mr-auto" id="submit" type="submit">ENQUIRE NOW</button>
  53. <a class="btn btn-blue even-width mr-auto" href="javascript:history.back()">BACK</a>
  54. </form>
  55. </div>
  56. </div>
  57. <div class="row mb-4">
  58. <div class="col-md-4">
  59. <img class="img-fluid" src="{{ $unit->image1 }}" alt="Resort Image" />
  60. </div>
  61. <div class="col-md-4">
  62. <img class="img-fluid" src="{{ $unit->image2 }}" alt="Resort Image" />
  63. </div>
  64. <div class="col-md-4">
  65. <img class="img-fluid" src="{{ $unit->image3 }}" alt="Resort Image" />
  66. </div>
  67. </div>
  68. </div>
  69. @stop