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
47 lines
1.9 KiB
@extends('hopadditions')
|
|
@section('main') <div class="row">
|
|
<div class="col-sm-12">
|
|
<h1 class="display-3">Update Hop 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('hopadditions.update', $hopaddition->id) }}">
|
|
@method('PATCH')
|
|
@csrf
|
|
<div class="form-group">
|
|
<label for="beer_id">Beer</label>
|
|
<select class="form-control" name="beer_id">
|
|
@foreach ($beers as $beer)
|
|
<option value="{{$beer->beer_id}}" {{ $selected_beer == $beer->beer_id ? 'selected="selected"' : '' }}>{{$beer->name}}</option>
|
|
@endforeach
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="hop_id">Hop</label>
|
|
<select class="form-control" name="hop_id">
|
|
@foreach ($hops as $hop)
|
|
<option value="{{$hop->id}}" {{ $selected_hop == $hop->id ? 'selected="selected"' : '' }}>{{$hop->name}}</option>
|
|
@endforeach
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="amount">Amount</label>
|
|
<input type="text" maxlength="10" class="form-control" name="amount" value="{{$hopaddition->amount}}" />
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="timing">Timing</label>
|
|
<input type="text" maxlength="10" class="form-control" name="timing" value="{{$hopaddition->timing}}" />
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Update</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
@endsection
|