mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
d687b20467
Signed-off-by: snipe <snipe@snipe.net>
25 lines
1.3 KiB
PHP
25 lines
1.3 KiB
PHP
@extends('layouts/edit-form', [
|
|
'createText' => {{ trans('admin/kits/general.append_consumable') }},
|
|
'updateText' => {{ trans('admin/kits/general.update_appended_consumable') }},
|
|
'formAction' => (isset($item->id)) ? route('kits.consumables.update', ['kit_id' => $kit->id, 'consumable_id' => $item->consumable_id]) : route('kits.consumables.store', ['kit_id' => $kit->id]),
|
|
])
|
|
|
|
{{-- Page content --}}
|
|
@section('inputFields')
|
|
@include ('partials.forms.edit.consumable-select', ['translated_name' => {{ trans('general.consumable')}}, 'fieldname' => 'consumable_id', 'required' => 'true'])
|
|
|
|
<div class="form-group {{ $errors->has('quantity') ? ' has-error' : '' }}">
|
|
<label for="quantity" class="col-md-3 control-label">{{ trans('general.quantity') }}</label>
|
|
<div class="col-md-7 required">
|
|
<div class="col-md-2" style="padding-left:0px">
|
|
<input class="form-control" type="text" name="quantity" id="quantity" value="{{ old('quantity', $item->quantity) }}" />
|
|
</div>
|
|
{!! $errors->first('quantity', '<span class="alert-msg"><i class="fas fa-times"></i> :message</span>') !!}
|
|
</div>
|
|
</div>
|
|
|
|
<input type="hidden" name="pivot_id" value="{{$item->id}}">
|
|
{{-- <input class="form-control" type="text" name="quantity" id="quantity" value="{{ old('quantity', $item->quantity) }}" /> --}}
|
|
|
|
@stop
|