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.

16 lines
765 B

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