2017-05-23 02:50:27 -07:00
|
|
|
@extends('layouts/edit-form', [
|
|
|
|
'createText' => trans('admin/departments/table.create') ,
|
|
|
|
'updateText' => trans('admin/departments/table.update'),
|
2019-12-10 19:32:50 -08:00
|
|
|
'formAction' => (isset($item->id)) ? route('departments.update', ['department' => $item->id]) : route('departments.store'),
|
2017-05-23 02:50:27 -07:00
|
|
|
])
|
|
|
|
|
|
|
|
{{-- Page content --}}
|
|
|
|
@section('inputFields')
|
2017-07-29 16:42:17 -07:00
|
|
|
|
2017-05-23 02:50:27 -07:00
|
|
|
@include ('partials.forms.edit.name', ['translated_name' => trans('admin/departments/table.name')])
|
|
|
|
|
2017-10-28 11:17:52 -07:00
|
|
|
<!-- Company -->
|
|
|
|
@if (\App\Models\Company::canManageUsersCompanies())
|
|
|
|
@include ('partials.forms.edit.company-select', ['translated_name' => trans('general.company'), 'fieldname' => 'company_id'])
|
2021-07-29 11:28:57 -07:00
|
|
|
@else
|
|
|
|
<input id="hidden_company_id" type="hidden" name="company_id" value="{{ Auth::user()->company_id }}">
|
2017-10-28 11:17:52 -07:00
|
|
|
@endif
|
|
|
|
|
2023-07-10 11:44:21 -07:00
|
|
|
@include ('partials.forms.edit.phone')
|
|
|
|
@include ('partials.forms.edit.fax')
|
|
|
|
|
2017-05-23 02:50:27 -07:00
|
|
|
<!-- Manager -->
|
2017-10-28 11:17:52 -07:00
|
|
|
@include ('partials.forms.edit.user-select', ['translated_name' => trans('admin/users/table.manager'), 'fieldname' => 'manager_id'])
|
2017-05-23 02:50:27 -07:00
|
|
|
|
|
|
|
<!-- Location -->
|
2017-10-28 11:17:52 -07:00
|
|
|
@include ('partials.forms.edit.location-select', ['translated_name' => trans('general.location'), 'fieldname' => 'location_id'])
|
2023-04-03 22:35:55 -07:00
|
|
|
@include ('partials.forms.edit.image-upload', ['image_path' => app('departments_upload_path')])
|
2017-05-23 02:50:27 -07:00
|
|
|
|
2025-02-10 16:39:26 -08:00
|
|
|
<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>
|
2017-05-23 02:50:27 -07:00
|
|
|
|
|
|
|
@stop
|
|
|
|
|