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.

48 lines
1.6 KiB

  1. @extends('hopadditions')
  2. @section('main')
  3. <div class="row">
  4. <div class="col-sm-12">
  5. <h1 class="display-3">Add a Hop Addition</h1>
  6. <div>
  7. @if ($errors->any())
  8. <div class="alert alert-danger">
  9. <ul>
  10. @foreach ($errors->all() as $error)
  11. <li>{{ $error }}</li>
  12. @endforeach
  13. </ul>
  14. </div><br />
  15. @endif
  16. <form method="post" action="{{ route('hopadditions.store') }}">
  17. @csrf
  18. <div class="form-group">
  19. <label for="beer_id">Beer</label>
  20. <select class="form-control" name="beer_id">
  21. @foreach ($beers as $beer)
  22. <option value="{{$beer->beer_id}}">{{$beer->name}}</option>
  23. @endforeach
  24. </select>
  25. </div>
  26. <div class="form-group">
  27. <label for="hop_id">Hop</label>
  28. <select class="form-control" name="hop_id">
  29. @foreach ($hops as $hop)
  30. <option value="{{$hop->id}}">{{$hop->name}}</option>
  31. @endforeach
  32. </select>
  33. </div>
  34. <div class="form-group">
  35. <label for="amount">Amount</label>
  36. <input type="text" maxlength="10" class="form-control" name="amount">
  37. </div>
  38. <div class="form-group">
  39. <label for="timing">Timing</label>
  40. <input type="text" maxlength="10" class="form-control" name="timing">
  41. </div>
  42. <button type="submit" class="btn btn-primary">Add Hop Addition</button>
  43. </form>
  44. </div>
  45. </div>
  46. </div>
  47. @endsection