2023-01-26 17:03:07 -08:00
|
|
|
@extends('layouts/edit-form', [
|
|
|
|
'createText' => trans('admin/custom_fields/general.create_fieldset') ,
|
|
|
|
'updateText' => trans('admin/custom_fields/general.update_fieldset'),
|
2023-01-31 19:41:42 -08:00
|
|
|
'helpText' => trans('admin/custom_fields/general.about_fieldsets_text'),
|
|
|
|
'helpPosition' => 'right',
|
2023-01-26 17:03:07 -08:00
|
|
|
'formAction' => (isset($item->id)) ? route('fieldsets.update', ['fieldset' => $item->id]) : route('fieldsets.store'),
|
|
|
|
])
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2023-01-31 19:41:42 -08:00
|
|
|
@section('content')
|
|
|
|
@parent
|
|
|
|
@stop
|
2017-01-18 04:58:31 -08:00
|
|
|
|
2023-01-31 19:41:42 -08:00
|
|
|
@section('inputFields')
|
|
|
|
@include ('partials.forms.edit.name', ['translated_name' => trans('general.name')])
|
|
|
|
@stop
|
2017-01-18 04:58:31 -08:00
|
|
|
|
|
|
|
|