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ů.

timeshare-enquiry.blade.php 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. @extends('master')
  2. @section('title', 'Timeshare 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">{{ $timeshare->resort }}</h1>
  10. </div>
  11. <div class="col-md-6">
  12. <p>
  13. {!! $resort->information !!}
  14. </p>
  15. </div>
  16. <div class="col-md-6">
  17. <form id="mainForm" method="POST" action="/interested-timeshare/{{ $timeshare->id }}" accept-charset="UTF-8" enctype="multipart/form-data">
  18. @csrf
  19. <input id="resort" type="hidden" value="{{ $timeshare->resort }}">
  20. <div class="form-row">
  21. <div class="col-md-6">
  22. <label for="resortName">Unit</label>
  23. <input class="form-control" type="text" id="resort" name="resortName" value="{{ $timeshare->unit }}" disabled>
  24. </div>
  25. <div class="col-md-6">
  26. <label for="resortWeek">Week</label>
  27. <input class="form-control" type="text" id="week" name="resortWeek" value="{{ $timeshare->week }}" disabled>
  28. </div>
  29. </div>
  30. <div class="form-row">
  31. <div class="col-md-6">
  32. <label for="resortModule">Module</label>
  33. <input class="form-control" type="text" id="module" name="resortModule" value="{{ $timeshare->module }}" disabled>
  34. </div>
  35. <div class="col-md-6">
  36. <label for="price">Price</label>
  37. <input class="form-control" type="text" name="price" id="price" value="R {{ number_format($timeshare->price, 2) }}" disabled>
  38. </div>
  39. </div>
  40. <div class="form-row">
  41. <div class="col-md-6">
  42. <label for="resortModule">Current Year Levy</label>
  43. <input class="form-control" type="text" id="module" name="levy" value="R {{ number_format($timeshare->levy, 2) }}" disabled>
  44. </div>
  45. </div>
  46. <div class="form-row">
  47. <div class="col-md-12">
  48. <input class="form-control" type="text" name="name" placeholder="Name">
  49. </div>
  50. </div>
  51. <div class="form-row">
  52. <div class="col-md-12">
  53. <input class="form-control" type="text" name="mobile" placeholder="Contact Number">
  54. </div>
  55. </div>
  56. <div class="form-row">
  57. <div class="col-md-12">
  58. <input class="form-control" type="email" name="email" placeholder="Email">
  59. </div>
  60. </div>
  61. <button class="btn btn-blue even-width mr-auto" id="submit" type="submit">ENQUIRE NOW</button>
  62. @if(Auth::check())
  63. <a class="btn btn-blue even-width mr-auto" href="/share-transfer-initiation-for-purchaser/{{ $timeshare->id }}">MAKE AN OFFER</a>
  64. @else
  65. <a class="btn btn-blue even-width mr-auto" href="#" data-toggle="modal" data-target="#loginOrRegister">MAKE AN OFFER</a>
  66. @endif
  67. <a class="btn btn-blue even-width mr-auto" href="javascript:history.back()">BACK</a>
  68. </form>
  69. </div>
  70. </div>
  71. <div class="row mb-4">
  72. <div class="col-md-4">
  73. <img class="img-fluid" src="{{ $resort->image1 }}" alt="Resort Image" />
  74. </div>
  75. <div class="col-md-4">
  76. <img class="img-fluid" src="{{ $resort->image2 }}" alt="Resort Image" />
  77. </div>
  78. <div class="col-md-4">
  79. <img class="img-fluid" src="{{ $resort->image3 }}" alt="Resort Image" />
  80. </div>
  81. </div>
  82. </div>
  83. @stop