2019-02-19 11:19:00 -08:00
|
|
|
@extends('layouts/edit-form', [
|
|
|
|
'createText' => 'Append consumable', // TODO: trans
|
|
|
|
'updateText' => 'Update appended consumable', // TODO: trans
|
|
|
|
'formAction' => ($item) ? 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')
|
2019-02-27 14:37:58 -08:00
|
|
|
@include ('partials.forms.edit.consumable-select', ['translated_name' => 'Consumable', 'fieldname' => 'consumable_id', 'required' => 'true']){{-- TODO: trans --}}
|
2019-02-19 11:19:00 -08:00
|
|
|
|
|
|
|
<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="{{ Input::old('quantity', $item->quantity) }}" />
|
|
|
|
</div>
|
|
|
|
{!! $errors->first('quantity', '<span class="alert-msg"><i class="fa 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="{{ Input::old('quantity', $item->quantity) }}" /> --}}
|
|
|
|
|
|
|
|
@stop
|