{!! Form::model($inventory, ['method' => 'PUT', 'route' => ['admin.stock.inventory.updateQtt', $inventory->id], 'class' => 'ajax-form', 'id' => 'form', 'data-toggle' => 'validator']) !!}
{{ trans('app.form.update') }}
{!! Form::label('stock_quantity', trans('app.form.stock_quantity') . '*') !!} {!! Form::number('stock_quantity', null, ['id' => 'stock_quantity', 'class' => 'form-control', 'step' => 'any', 'placeholder' => trans('app.placeholder.stock_quantity'), 'required']) !!}
{!! Form::submit(trans('app.update'), ['class' => 'btn btn-flat btn-new']) !!}
{!! Form::close() !!}