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.
48 lines
1.6 KiB
48 lines
1.6 KiB
@extends('mashes')
|
|
|
|
@section('main')
|
|
<div class="row">
|
|
<div class="col-sm-12 offset-sm-2">
|
|
<h1 class="display-3">Add a Mash Step</h1>
|
|
<div>
|
|
@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('mashes.store') }}">
|
|
@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}}">{{$beer->name}}</option>
|
|
@endforeach
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="temperature">Temperature</label>
|
|
<input type="text" class="form-control" name="temperature" >
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="duration">Duration</label>
|
|
<input type="text" class="form-control" name="duration">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="stage">Stage</label>
|
|
<input type="text" maxlength="5" class="form-control" name="stage">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="boil">Length of Boil</label>
|
|
<input type="text" class="form-control" name="boil">
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Add Mash Step</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|