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
2.0 KiB
47 lines
2.0 KiB
@extends('adjunctadditions')
|
|
@section('main') <div class="row">
|
|
<div class="col-sm-12 offset-sm-2">
|
|
<h1 class="display-3">Update Adjunct Addition</h1>
|
|
|
|
@if ($errors->any())
|
|
<div class="alert alert-danger">
|
|
<ul>
|
|
@foreach ($errors->all() as $error)
|
|
<li>{{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
<br />
|
|
@endif
|
|
<form method="post" action="{{ route('adjunctadditions.update', $adjunctaddition->id) }}">
|
|
@method('PATCH')
|
|
@csrf
|
|
<div class="form-group">
|
|
<label for="beer_id">Beer ID</label>
|
|
<input type="text" class="form-control" name="beer_id" value="{{$adjunctaddition->beer_id}}" />
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="adjunct_id">Adjunct ID</label>
|
|
<input type="text" class="form-control" name="adjunct_id" value="{{$adjunctaddition->adjunct_id}}" />
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="amount">Amount</label>
|
|
<input type="text" maxlength="10" class="form-control" name="amount" value="{{$adjunctaddition->amount}}" />
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="timing">Timing</label>
|
|
<input type="text" maxlength="10" class="form-control" name="timing" value="{{$adjunctaddition->timing}}" />
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="alternative">Alternative (ID)</label>
|
|
<input type="text" class="form-control" name="alternative" value="{{$adjunctaddition->alternative}}" />
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="notes">Notes</label>
|
|
<textarea type="text" class="form-control" name="notes">{{$adjunctaddition->notes}}</textarea>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Update</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
@endsection
|