@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{!! Form::model($cropStage, array('route' => array('crop-stages.update', $cropStage), 'method' => 'PUT')); !!}
{!! Form::Label('crop_id', 'Crop:') !!}
{!! Form::select('crop_id', $crops, null, ['class' => 'form-control']); !!}
{!! Form::Label('stage_number', 'Stage number:') !!}
{!! Form::text('stage_number', null, ['class' => 'form-control']); !!}
{!! Form::Label('stage_name', 'Stage name:') !!}
{!! Form::text('stage_name', null, ['class' => 'form-control']); !!}
{!! Form::Label('notes', 'Notes:') !!}
{!! Form::text('notes', null, ['class' => 'form-control']); !!}
{!! Form::submit('Submit'); !!}
{{ Form::close() }}