mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
11 lines
593 B
PHP
11 lines
593 B
PHP
|
|
||
|
<!-- QTY -->
|
||
|
<div class="form-group {{ $errors->has('qty') ? ' has-error' : '' }}">
|
||
|
<label for="qty" class="col-md-3 control-label">{{ trans('general.quantity') }}</label>
|
||
|
<div class="col-md-7{{ (\App\Helpers\Helper::checkIfRequired($item, 'qty')) ? ' required' : '' }}">
|
||
|
<div class="col-md-2" style="padding-left:0px">
|
||
|
<input class="form-control" type="text" name="qty" id="qty" value="{{ Input::old('qty', $item->qty) }}" />
|
||
|
</div>
|
||
|
{!! $errors->first('qty', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
||
|
</div>
|
||
|
</div>
|