My beer compendium
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
879 B

  1. <form method="post" action="{{ route('search.results') }}">
  2. @csrf
  3. <div class="form-group">
  4. <label for="search">Search</label>
  5. <input type="text" class="form-control" name="search" >
  6. </div>
  7. <div class="form-group">
  8. <legend>Select table: </legend>
  9. <input type="radio" id="summarie" value="summarie" class="form-control" name="table" checked>
  10. <label for="summarie">Beers</label>
  11. <input type="radio" id="brewerie" value="brewerie" class="form-control" name="table" >
  12. <label for="">Breweries</label>
  13. <input type="radio" id="hops" value="hops" class="form-control" name="table" >
  14. <label for="">Hops</label>
  15. <input type="radio" id="yeasts" value="yeast" class="form-control" name="table" >
  16. <label for="">Yeasts</label>
  17. </div>
  18. <button type="submit" class="btn btn-primary">Search</button>
  19. </form>