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.

27 lines
854 B

  1. @extends('adjuncts')
  2. @section('main') <div class="row">
  3. <div class="col-sm-12">
  4. <h1 class="display-3">Update Adjunct</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('adjuncts.update', $adjunct->id) }}">
  16. @method('PATCH')
  17. @csrf
  18. <div class="form-group">
  19. <label for="name">Name</label>
  20. <input type="text" class="form-control" name="name" value="{{$adjunct->name}}" />
  21. </div>
  22. <button type="submit" class="btn btn-primary">Update</button>
  23. </form>
  24. </div>
  25. </div>
  26. @endsection