| 1234567891011121314151617181920212223242526272829 |
- @extends('layouts.app')
- @section('content')
- <div class="row mb-2">
- <div class="col-12">
- <h3>Настройки</h3>
- </div>
- </div>
- <form action="{{ route('admin.settings.store') }}" method="post">
- @csrf
- @include('partials.select', [
- 'name' => 'default_maf_order_user_id',
- 'title' => 'Пользователь по умолчанию для заказов МАФ',
- 'options' => $users,
- 'value' => old('default_maf_order_user_id', $defaultMafOrderUserId),
- 'first_empty' => true,
- ])
- @include('partials.select', [
- 'name' => 'reclamation_act_representative_user_id',
- 'title' => 'Представитель компании для акта рекламаций',
- 'options' => $users,
- 'value' => old('reclamation_act_representative_user_id', $reclamationActRepresentativeUserId),
- 'first_empty' => true,
- ])
- @include('partials.submit', ['name' => 'Сохранить'])
- </form>
- @endsection
|