Advertisement
whitestarrr

Untitled

Nov 18th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <div class="container body-content span=8 offset=2">
  2. <div class="well">
  3. <form class="form-horizontal"
  4. action="/admin/category/edit/{{category.id}}" method="POST">
  5. <fieldset>
  6. <legend>Edit Category</legend>
  7. <div class="form-group">
  8. <label class="col-sm-4 control-label"
  9. for="name">Category Name</label>
  10. <div class="col-sm-4 ">
  11. <input type="text" class="form-control"
  12. id="name" placeholder="Category Name" name="name" value="{{
  13. category.name }}">
  14. </div>
  15. </div>
  16. <div class="form-group">
  17. <div class="col-sm-4 col-sm-offset-4">
  18. <a class="btn btn-default"
  19. href="/admin/category/all">Cancel</a>
  20. <button type="submit" class="btn btnsuccess">Submit</button>
  21. </div>
  22. </div>
  23. </fieldset>
  24. </form>
  25. </div>
  26. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement