mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
dfb2b9b569
Changes how the various modals work, and allows for specifying category_type when inline-creating categories.
42 lines
2.2 KiB
PHP
Executable file
42 lines
2.2 KiB
PHP
Executable file
@extends('layouts/edit-form', [
|
|
'createText' => trans('admin/accessories/general.create') ,
|
|
'updateText' => trans('admin/accessories/general.update'),
|
|
'helpTitle' => trans('admin/accessories/general.about_accessories_title'),
|
|
'helpText' => trans('admin/accessories/general.about_accessories_text'),
|
|
'formAction' => ($item) ? route('accessories.update', ['accessory' => $item->id]) : route('accessories.store'),
|
|
])
|
|
|
|
{{-- Page content --}}
|
|
@section('inputFields')
|
|
|
|
@include ('partials.forms.edit.company-select', ['translated_name' => trans('general.company'), 'fieldname' => 'company_id'])
|
|
@include ('partials.forms.edit.name', ['translated_name' => trans('admin/accessories/general.accessory_name')])
|
|
@include ('partials.forms.edit.category-select', ['translated_name' => trans('general.category'), 'fieldname' => 'category_id', 'required' => 'true','category_type' => 'accessory'])
|
|
@include ('partials.forms.edit.supplier-select', ['translated_name' => trans('general.supplier'), 'fieldname' => 'supplier_id'])
|
|
@include ('partials.forms.edit.manufacturer-select', ['translated_name' => trans('general.manufacturer'), 'fieldname' => 'manufacturer_id', 'required' => 'true'])
|
|
@include ('partials.forms.edit.location-select', ['translated_name' => trans('general.location'), 'fieldname' => 'location_id'])
|
|
@include ('partials.forms.edit.model_number')
|
|
@include ('partials.forms.edit.order_number')
|
|
@include ('partials.forms.edit.purchase_date')
|
|
@include ('partials.forms.edit.purchase_cost')
|
|
@include ('partials.forms.edit.quantity')
|
|
@include ('partials.forms.edit.minimum_quantity')
|
|
|
|
<!-- Image -->
|
|
|
|
<div class="form-group {{ $errors->has('image') ? 'has-error' : '' }}">
|
|
<label class="col-md-3 control-label" for="image">{{ trans('general.image_upload') }}</label>
|
|
<div class="col-md-5">
|
|
<label class="btn btn-default">
|
|
{{ trans('button.select_file') }}
|
|
<input type="file" name="image" accept="image/gif,image/jpeg,image/png,image/svg" hidden>
|
|
</label>
|
|
<p class="help-block">Accepted filetypes are jpg, png, gif and svg</p>
|
|
{!! $errors->first('image', '<span class="alert-msg">:message</span>') !!}
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|