|
|
@ -0,0 +1,43 @@ |
|
|
|
@extends('fermentations') |
|
|
|
@section('main') <div class="row"> |
|
|
|
<div class="col-sm-12 offset-sm-2"> |
|
|
|
<h1 class="display-3">Update Fermentation Step</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('fermentations.update', $fermentation->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="{{$fermentation->beer_id}}" /> |
|
|
|
</div> |
|
|
|
<div class="form-group"> |
|
|
|
<label for="yeast_id">Yeast ID</label> |
|
|
|
<input type="text" class="form-control" name="yeast_id" value="{{$fermentation->yeast_id}}" /> |
|
|
|
</div> |
|
|
|
<div class="form-group"> |
|
|
|
<label for="temperature">Temperature</label> |
|
|
|
<input type="text" class="form-control" name="temperature" value="{{$fermentation->temperature}}" /> |
|
|
|
</div> |
|
|
|
<div class="form-group"> |
|
|
|
<label for="duration">Duration</label> |
|
|
|
<textarea type="text" class="form-control" name="duration">{{$fermentation->duration}}</textarea> |
|
|
|
</div> |
|
|
|
<div class="form-group"> |
|
|
|
<label for="alternative">Alternative (ID)</label> |
|
|
|
<input type="text" class="form-control" name="alternative" value="{{$fermentation->alternative}}" /> |
|
|
|
</div> |
|
|
|
<button type="submit" class="btn btn-primary">Update</button> |
|
|
|
</form> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
@endsection |