Blame view
resources/views/admin/job_titles/form.blade.php
5 KB
5f2a2635a Справочник Должно... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
<div class="px-4 py-3 mb-8 bg-white rounded-lg shadow-md dark:bg-gray-800"> <label class="block text-sm"> <span class="text-gray-700 dark:text-gray-400">Название должности</span> <input name="name" id="name" class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input" placeholder="Название должности" value="{{ old('name') ?? $job_title->name ?? '' }}" /> @error('name') <span class="text-xs text-red-600 dark:text-red-400"> {{ $message }} </span> @enderror </label><br> <label class="block text-sm"> <span class="text-gray-700 dark:text-gray-400">Родитель</span> @php $parent_id = old('parent_id') ?? $job_title->parent_id ?? 0; @endphp <select name="parent_id" class="block w-full mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 form-select focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray" title="Родитель"> <option value="0">Без родителя</option> @include('admin.job_titles.parent_id', ['level' => -1, 'parent' => 0]) </select> </label><br> |
f950a1227 Коммит обновление... |
27 |
<label class="block text-sm"> |
8f150320c Работа рефакторинг |
28 |
<span class="text-gray-700 dark:text-gray-400">Категория должности</span> |
31fe4e458 Показ проекта зак... |
29 30 |
@php |
8f150320c Работа рефакторинг |
31 |
$category_id = old('position_id') ?? $job_title->position_id ?? 0; |
31fe4e458 Показ проекта зак... |
32 33 34 35 |
@endphp <select name="position_id" class="block w-full mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 form-select focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray" title="Родитель"> <option value="">Без родителя</option> |
8f150320c Работа рефакторинг |
36 37 |
@foreach ($category as $it) <option value="{{ $it->id }}" @if ($it->id == $category_id) selected @endif>{{ $it->name }}</option> |
31fe4e458 Показ проекта зак... |
38 39 40 41 42 |
@endforeach </select> </label><br> <label class="block text-sm"> |
f950a1227 Коммит обновление... |
43 44 45 46 |
<span class="text-gray-700 dark:text-gray-400">Сортировка</span> @php $sort_num = 100; @endphp |
ddb8f38fb Коммит по редизай... |
47 48 49 50 51 52 |
<input name="sort" id="sort" class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input" placeholder="Сортировка" value="{{ old('sort') ?? $job_title->sort ?? '100' }}" /> <!--<select name="sort" class="block w-full mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 form-select focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray" |
f950a1227 Коммит обновление... |
53 |
title="Сортировка"> |
ddb8f38fb Коммит по редизай... |
54 55 56 57 58 |
for($i = 1; $i <= 10; $i++) <option value="{ $sort_num }}" if (isset($job_title)) if ($sort_num == $job_title->sort) selected else endif endif>{ $sort_num }}</option> php $sort_num = $sort_num + 10; endphp endfor </select>--> |
f950a1227 Коммит обновление... |
59 |
</label><br> |
492296b6f Коммит по итогу п... |
60 61 62 63 64 |
<label class="block text-sm"> <span class="text-gray-700 dark:text-gray-400">Видимость</span> <select name="is_bd" class="block w-full mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 form-select focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray" title="Видимость"> |
3e8ab15f2 Статусы должносте... |
65 66 67 |
<option value="0" @if (isset($job_title)) @if ($job_title->is_bd == 0) selected @endif @endif>Работодатель</option> <option value="1" @if (isset($job_title)) @if ($job_title->is_bd == 1) selected @endif @endif>Работник</option> <option value="2" @if (isset($job_title)) @if ($job_title->is_bd == 2) selected @endif @endif>База данных</option> |
492296b6f Коммит по итогу п... |
68 69 |
</select> </label><br> |
5f2a2635a Справочник Должно... |
70 71 72 73 74 |
<div class="flex flex-col flex-wrap mb-4 space-y-4 md:flex-row md:items-end md:space-x-4"> <div> <button type="submit" class="px-3 py-1 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple"> Сохранить </button> |
32cbe7736 Обновление блейдо... |
75 76 77 78 79 |
<a href="{{ route('admin.job-titles.index') }}" class="px-3 py-1 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple" style="display: -webkit-inline-box; height: 30px!important;" >Назад</a> |
5f2a2635a Справочник Должно... |
80 81 82 |
</div> </div> </div> |