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.7 KiB

  1. @extends('yeasts')
  2. @section('main')
  3. <div class="row">
  4. <div class="col-sm-12 offset-sm-2">
  5. <h1 class="display-3">Add a Yeast</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('yeasts.store') }}">
  17. @csrf
  18. <div class="form-group">
  19. <label for="name">Name</label>
  20. <input type="text" class="form-control" name="name">
  21. </div>
  22. <div class="form-group">
  23. <label for="profile">Profile</label>
  24. <textarea type="text" class="form-control" name="profile" ></textarea>
  25. </div>
  26. <div class="form-group">
  27. <label for="attenuation">Attenuation</label>
  28. <input type="text" maxlength="9" class="form-control" name="attenuation">
  29. </div>
  30. <div class="form-group">
  31. <label for="flocculation">Flocculation</label>
  32. <input type="text" maxlength="15" class="form-control" name="flocculation">
  33. </div>
  34. <div class="form-group">
  35. <label for="tolerance">Alcohol Tolerance</label>
  36. <input type="text" maxlength="25" class="form-control" name="tolerance">
  37. </div>
  38. <div class="form-group">
  39. <label for="temp_range">Temperature Range °C</label>
  40. <input type="text" maxlength="7" class="form-control" name="temp_range">
  41. </div>
  42. <button type="submit" class="btn btn-primary">Add Yeast</button>
  43. </form>
  44. </div>
  45. </div>
  46. </div>
  47. @endsection