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.

47 lines
1.9 KiB

  1. @extends('hopadditions')
  2. @section('main') <div class="row">
  3. <div class="col-sm-12">
  4. <h1 class="display-3">Update Hop Addition</h1>
  5. @if ($errors->any())
  6. <div class="alert alert-danger">
  7. <ul>
  8. @foreach ($errors->all() as $error)
  9. <li>{{ $error }}</li>
  10. @endforeach
  11. </ul>
  12. </div>
  13. <br />
  14. @endif
  15. <form method="post" action="{{ route('hopadditions.update', $hopaddition->id) }}">
  16. @method('PATCH')
  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}}" {{ $selected_beer == $beer->beer_id ? 'selected="selected"' : '' }}>{{$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}}" {{ $selected_hop == $hop->id ? 'selected="selected"' : '' }}>{{$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" value="{{$hopaddition->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" value="{{$hopaddition->timing}}" />
  41. </div>
  42. <button type="submit" class="btn btn-primary">Update</button>
  43. </form>
  44. </div>
  45. </div>
  46. @endsection