{{ Form::model($unit, array('route' => ['units.update', $unit->id], 'method' => 'patch')) }}
{{ Form::label('name', Trans('units.name')) }}
{{ Form::text('name', null, [
'class' => 'form-control',
'placeholder' => Trans('units.name'),
'required' => 'required'
])}}
{{ Form::close() }}