Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. <div class="container mt-5">
  2.  
  3. <div class="row mb-5">
  4. <div class="col-12 col-md-10 mx-auto">
  5.  
  6. {{!-- restaurant detail --}}
  7. <form action="/restaurants/{{{restaurant.id}}}/edit" method="POST">
  8. <p class="mb-4">
  9. <span class="text-secondary">
  10. 餐廳名稱:
  11. </span>
  12. <input type="text" value="{{{restaurant.name}}}" name="name">
  13. </p>
  14. <p class="mb-4">
  15. <span class="text-secondary">
  16. <i class="fas fa-utensils pr-2"></i>
  17. 類別:
  18. </span>
  19. <input type="text" value="{{{restaurant.category}}}" name="category">
  20. </p>
  21.  
  22. <p class="mb-4">
  23. <span class="text-secondary">
  24. <i class="fas fa-map-marker-alt pr-2"></i>
  25. 地址:
  26. </span>
  27. <input type="text" value="{{{restaurant.location}}}" name="location">
  28. </p>
  29.  
  30. <p class="mb-4">
  31. <span class="text-secondary">
  32. <i class="fas fa-map-marker-alt pr-2"></i>
  33. Google Map:
  34. </span>
  35. <input type="text" value="{{{restaurant.google_map}}}" name="google_map">
  36. </p>
  37.  
  38. <p class="mb-4">
  39. <span class="text-secondary">
  40. <i class="fas fa-mobile-alt pr-2"></i>
  41. 電話:
  42. </span>
  43. <input type="text" value="{{{restaurant.phone}}}" name="phone">
  44. </p>
  45.  
  46. <p class="mb-4">
  47. <span class="text-secondary">
  48. 餐廳描述:
  49. </span>
  50. <textarea cols="100" row="10" name="description">{{{restaurant.description}}}</textarea>
  51. </p>
  52.  
  53. <p class="mb-4">
  54. <span class="text-secondary">
  55. 圖片網址:
  56. </span>
  57. <input type="text" value="{{{restaurant.image}}}" name="image">
  58. </p>
  59. <div class="button-group">
  60. <button type="submit">Save</button>
  61. <button><a href="/restaurants/{{{restaurant.id}}}">Cancel</a></button>
  62. </div>
  63.  
  64. </form>
  65.  
  66. </div>
  67. </div>
  68. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement