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.

38 lines
1.1 KiB

3 years ago
3 years ago
  1. @extends('breweries')
  2. @section('main')
  3. <div class="row">
  4. <div class="col-sm-12 offset-sm-2">
  5. <h1 class="display-3">Add a brewery</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('breweries.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="place">City/Region</label>
  24. <input type="text" class="form-control" name="place"/>
  25. </div>
  26. <div class="form-group">
  27. <label for="country">Country</label>
  28. <input type="text" class="form-control" name="country"/>
  29. </div>
  30. <button type="submit" class="btn btn-primary">Add brewery</button>
  31. </form>
  32. </div>
  33. </div>
  34. </div>
  35. @endsection