Advertisement
meracle96

Untitled

Apr 23rd, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. {{-- Form Start --}}
  2. <div class="ct_contact_form">
  3. <form method="post" action="{{ route('forum.store') }}">
  4. <div class="form_field">
  5. <label class="fa fa-star-o"></label>
  6. <input class="conatct_plchldr" type="text" placeholder="Judul Topik">
  7. </div>
  8. <div class="form-group">
  9. <select class="conatct_plchldr" name="">
  10. <option value="">Pilih Kategori : </option>
  11. @foreach ($kategoris as $kategori)
  12. <option value="{{ $kategori->id }}">{{ $kategori->nama_kategori }}</option>
  13. @endforeach
  14. </select>
  15. </div>
  16. <div class="form_field">
  17. <label class="fa fa-edit"></label>
  18. <textarea class="conatct_plchldr" placeholder="Isi"></textarea>
  19. </div>
  20. <div class="form_field">
  21. <button>Send Now <i class="fa fa-arrow-right"></i> </button>
  22. </div>
  23. </form>
  24. </div>
  25. {{-- Form End --}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement