@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{!! Form::model($stationParameter, array('route' => array('station-parameters.update', $stationParameter), 'method' => 'PUT')); !!}
{!! Form::Label('parameter_name', 'Parameter name:') !!}
{!! Form::text('parameter_name', null, ['class' => 'form-control']); !!}
{!! Form::Label('parameter_code', 'Parameter code:') !!}
{!! Form::text('parameter_code', null, ['class' => 'form-control']); !!}
{!! Form::Label('units', 'Units:') !!}
{!! Form::text('units', null, ['class' => 'form-control']); !!}
{!! Form::Label('minimum_val', 'Minimum value:') !!}
{!! Form::text('minimum_val', null, ['class' => 'form-control']); !!}
{!! Form::Label('maximum_val', 'Maximum value:') !!}
{!! Form::text('maximum_val', null, ['class' => 'form-control']); !!}
{!! Form::Label('data_type', 'Data type:') !!}
{!! Form::select('data_type', array('decimal' => 'decimal', 'integer' => 'integer', 'text' => 'text'), null, ['class' => 'form-control', 'id' => 'data_type']); !!}
{!! Form::Label('purpose', 'Purpose:') !!}
{!! Form::text('purpose', null, ['class' => 'form-control']); !!}
{!! Form::Label('priority', 'Priority:') !!}
{!! Form::text('priority', null, ['class' => 'form-control']); !!}
{!! Form::Label('parameter_description', 'Parameter description:') !!}
{!! Form::text('parameter_description', null, ['class' => 'form-control']); !!}
{!! Form::submit('Submit'); !!}
{{ Form::close() }}