mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
1af7cdb715
Signed-off-by: snipe <snipe@snipe.net>
15 lines
597 B
PHP
15 lines
597 B
PHP
@extends('layouts/edit-form', [
|
|
'createText' => trans('admin/companies/table.create') ,
|
|
'updateText' => trans('admin/companies/table.update'),
|
|
'helpPosition' => 'right',
|
|
'helpText' => trans('help.companies'),
|
|
'formAction' => (isset($item->id)) ? route('companies.update', ['company' => $item->id]) : route('companies.store'),
|
|
])
|
|
|
|
{{-- Page content --}}
|
|
@section('inputFields')
|
|
@include ('partials.forms.edit.name', ['translated_name' => trans('admin/companies/table.name')])
|
|
@include ('partials.forms.edit.image-upload', ['image_path' => app('companies_upload_path')])
|
|
|
|
@stop
|