mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
46 lines
1.9 KiB
PHP
46 lines
1.9 KiB
PHP
@extends('layouts/edit-form', [
|
|
'createText' => trans('admin/departments/table.create') ,
|
|
'updateText' => trans('admin/departments/table.update'),
|
|
'formAction' => (isset($item->id)) ? route('departments.update', ['department' => $item->id]) : route('departments.store'),
|
|
])
|
|
|
|
{{-- Page content --}}
|
|
@section('inputFields')
|
|
|
|
@include ('partials.forms.edit.name', ['translated_name' => trans('admin/departments/table.name')])
|
|
|
|
<!-- Company -->
|
|
@if (\App\Models\Company::canManageUsersCompanies())
|
|
@include ('partials.forms.edit.company-select', ['translated_name' => trans('general.company'), 'fieldname' => 'company_id'])
|
|
@else
|
|
<input id="hidden_company_id" type="hidden" name="company_id" value="{{ Auth::user()->company_id }}">
|
|
@endif
|
|
|
|
@include ('partials.forms.edit.phone')
|
|
@include ('partials.forms.edit.fax')
|
|
|
|
<!-- Manager -->
|
|
@include ('partials.forms.edit.user-select', ['translated_name' => trans('admin/users/table.manager'), 'fieldname' => 'manager_id'])
|
|
|
|
<!-- Location -->
|
|
@include ('partials.forms.edit.location-select', ['translated_name' => trans('general.location'), 'fieldname' => 'location_id'])
|
|
@include ('partials.forms.edit.image-upload', ['image_path' => app('departments_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"
|
|
/>
|
|
{!! $errors->first('notes', '<span class="alert-msg" aria-hidden="true"><i class="fas fa-times" aria-hidden="true"></i> :message</span>') !!}
|
|
</div>
|
|
</div>
|
|
|
|
@stop
|
|
|