Advertisement
wildanfuady

Untitled

Oct 21st, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. @extends('template')
  2. @section('content')
  3. <!-- Content Header (Page header) -->
  4. <div class="content-header">
  5. <div class="container-fluid">
  6. <div class="row mb-2">
  7. <div class="col-sm-6">
  8. <h1 class="m-0 text-dark">Create Category</h1>
  9. </div><!-- /.col -->
  10. <div class="col-sm-6">
  11. <ol class="breadcrumb float-sm-right">
  12. <li class="breadcrumb-item"><a href="#">Home</a></li>
  13. <li class="breadcrumb-item active">Create Category</li>
  14. </ol>
  15. </div><!-- /.col -->
  16. </div><!-- /.row -->
  17. </div><!-- /.container-fluid -->
  18. </div>
  19. <!-- /.content-header -->
  20.  
  21. <!-- Main content -->
  22. <div class="content">
  23. <div class="container-fluid">
  24. <div class="row">
  25. <div class="col-lg-12">
  26. <div class="card">
  27. <form action="{{ url('category/add') }}" method="post">
  28. @csrf
  29. <div class="card-header">
  30. Create a New Category
  31. </div>
  32. <div class="card-body">
  33.  
  34. <div class="form-group">
  35. <label for="name">Category Name</label>
  36. <input type="text" name="category_name" class="form-control" placeholder="Enter Category Name">
  37. </div>
  38.  
  39. <div class="form-group">
  40. <label for="status">Category Status</label>
  41. <select name="category_status" id="" class="form-control">
  42. <option value="">-- Choose One --</option>
  43. <option value="Active">Active</option>
  44. <option value="Inactive">Inactive</option>
  45. </select>
  46. </div>
  47.  
  48. </div>
  49. <div class="card-footer">
  50. <a href="{{ url('categories') }}" class="btn btn-outline-info">Back</a>
  51. <button type="submit" class="btn btn-primary float-right">Simpan</button>
  52. </div>
  53. </form>
  54. </div>
  55. </div>
  56. </div>
  57. <!-- /.row -->
  58. </div><!-- /.container-fluid -->
  59. </div>
  60. <!-- /.content -->
  61. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement