Guest User

Untitled

a guest
Oct 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. @hidden([
  2. 'id' => 'id',
  3. 'name' => 'id',
  4. 'value' => ''
  5. ])
  6.  
  7. @input([
  8. 'label' => 'Event Name',
  9. ])
  10.  
  11. @textarea([
  12. 'label' => 'Event Description',
  13. ])
  14.  
  15. <div class="row">
  16. <div class="col-6">
  17. @input([
  18. 'label' => 'Date',
  19. 'type' => 'date'
  20. ])
  21. </div>
  22. <div class="col-6">
  23. @input([
  24. 'label' => 'Time',
  25. 'type' => 'time',
  26. 'min' => '9:00',
  27. 'max' => '18:00'
  28. ])
  29. </div>
  30. </div>
  31.  
  32. <div class="row">
  33. <div class="col-6">
  34. @input([
  35. 'label' => 'Fee (MYR)',
  36. 'placeholder' => '100.00',
  37. 'min' => 100
  38. ])
  39. </div>
  40. <div class="col-6">
  41. @input([
  42. 'label' => 'Payment URL',
  43. 'placeholder' => 'Link to Payment'
  44. ])
  45. </div>
  46. </div>
Add Comment
Please, Sign In to add comment