mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
14 lines
602 B
PHP
Executable file
14 lines
602 B
PHP
Executable file
@extends('layouts/edit-form', [
|
|
'createText' => trans('admin/manufacturers/table.create') ,
|
|
'updateText' => trans('admin/manufacturers/table.update'),
|
|
'helpTitle' => trans('admin/manufacturers/table.about_manufacturers_title'),
|
|
'helpText' => trans('admin/manufacturers/table.about_manufacturers_text'),
|
|
'formAction' => ($item) ? route('manufacturers.update', ['manufacturer' => $item->id]) : route('manufacturers.store'),
|
|
])
|
|
|
|
|
|
{{-- Page content --}}
|
|
@section('inputFields')
|
|
@include ('partials.forms.edit.name', ['translated_name' => trans('admin/manufacturers/table.name')])
|
|
@stop
|