mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
a16604285c
Signed-off-by: snipe <snipe@snipe.net>
14 lines
427 B
PHP
14 lines
427 B
PHP
@extends('layouts/edit-form', [
|
|
'createText' => trans('admin/custom_fields/general.create_fieldset') ,
|
|
'updateText' => trans('admin/custom_fields/general.update_fieldset'),
|
|
'formAction' => (isset($item->id)) ? route('fieldsets.update', ['fieldset' => $item->id]) : route('fieldsets.store'),
|
|
])
|
|
|
|
@section('inputFields')
|
|
|
|
@include ('partials.forms.edit.name', ['translated_name' => trans('general.name')])
|
|
|
|
|
|
|
|
@stop
|