mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
34 lines
1.2 KiB
PHP
34 lines
1.2 KiB
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.phone')
|
|
@include ('partials.forms.edit.fax')
|
|
@include ('partials.forms.edit.email')
|
|
@include ('partials.forms.edit.image-upload', ['image_path' => app('companies_upload_path')])
|
|
|
|
<div class="form-group{!! $errors->has('notes') ? ' has-error' : '' !!}">
|
|
<label for="notes" class="col-md-3 control-label">{{ trans('general.notes') }}</label>
|
|
<div class="col-md-8">
|
|
|
|
<x-input.textarea
|
|
name="notes"
|
|
id="notes"
|
|
:value="old('notes', $item->notes)"
|
|
placeholder="{{ trans('general.placeholders.notes') }}"
|
|
aria-label="notes"
|
|
rows="5"
|
|
/>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
@stop
|