Blame view

resources/views/admin/worker/edit.blade.php 10.8 KB
32cbe7736   Андрей Ларионов   Обновление блейдо...
1
2
3
  <?php
  use Illuminate\Support\Facades\Storage;
  ?>
8c73c7b41   Андрей Ларионов   Категории ваканси...
4
5
6
7
  @extends('layout.admin', ['title' => 'Админка - Редактирование соискателя'])
  
  @section('content')
      <h4 class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300">
3e44ec515   Андрей Ларионов   Настройки форм со...
8
          Соискатель-пользователь: <a style="text-decoration: underline;" href="{{ route('admin.user-profile', ['user' => $worker->user_id]) }}">"{{$worker->users->surname}} {{$worker->users->name_man}} {{$worker->users->surname2}} ({{$worker->user_id}})"</a>
8c73c7b41   Андрей Ларионов   Категории ваканси...
9
10
11
12
      </h4>
      <form method="POST" action="">
          @csrf
          <div class="px-4 py-3 mb-8 bg-white rounded-lg shadow-md dark:bg-gray-800">
32cbe7736   Андрей Ларионов   Обновление блейдо...
13
14
15
16
17
              <div class="tabs">
                  <input type="radio" name="tab-btn" id="tab-btn-1" value="" checked>
                  <label for="tab-btn-1">Общие настройки</label>
                  <input type="radio" name="tab-btn" id="tab-btn-2" value="">
                  <label for="tab-btn-2">Анкета</label>
32cbe7736   Андрей Ларионов   Обновление блейдо...
18
                  <div id="content-1">
5c0ae0519   Fedor   task-132687 minor...
19

32cbe7736   Андрей Ларионов   Обновление блейдо...
20
                      <label class="block text-sm">
5c0ae0519   Fedor   task-132687 minor...
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
                          <span class="text-gray-700 dark:text-gray-400">Должность</span>
                          <select
                              name="positions_work[]"
                              id="positions_work[]"
                              data-placeholder="Выберите должность"
                              {{--multiple="multiple"--}}
                              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"
                          >
                              <option value="{{ null }}">
                                  Не выбрано
                              </option>
                              @foreach($job_titles as $job_title)
                                  <option value="{{ $job_title->id }}"
                                      @if ($worker?->positions_work && in_array($job_title->id , $worker->positions_work))
                                          selected
                                      @endif
                                  >
                                      {{ $job_title->name }} ({{ $job_title->id }})
                                  </option>
32cbe7736   Андрей Ларионов   Обновление блейдо...
40
41
                              @endforeach
                          </select>
5c0ae0519   Fedor   task-132687 minor...
42
                          @error('positions_work')
32cbe7736   Андрей Ларионов   Обновление блейдо...
43
44
45
46
                          <span class="text-xs text-red-600 dark:text-red-400">
                              {{ $message }}
                          </span>
                          @enderror
5c0ae0519   Fedor   task-132687 minor...
47
48
                      </label>
                      <br>
32cbe7736   Андрей Ларионов   Обновление блейдо...
49
50
51
                      <label class="block text-sm">
                          <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Избранный кандидат </p>
                          <input type="hidden" name="favorite_user" value="0" />
5c0ae0519   Fedor   task-132687 minor...
52
                          <input name="favorite_user" <?= $worker->favorite_user ? "checked" : '';?>
32cbe7736   Андрей Ларионов   Обновление блейдо...
53
54
55
56
57
58
                          class="block  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 "
                                 placeholder="" type="checkbox" value="1"
                          /><br>
  
                          <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Срочный кандидат</p>
                          <input type="hidden" name="sroch_user" value="0" />
5c0ae0519   Fedor   task-132687 minor...
59
                          <input name="sroch_user" id="sroch_user" <?= $worker->sroch_user ? "checked" : '';?>
32cbe7736   Андрей Ларионов   Обновление блейдо...
60
61
62
63
64
                          class="block  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 "
                                 placeholder=""  type="checkbox" value="1"
                          /><br>
  
                      </label>
5c0ae0519   Fedor   task-132687 minor...
65
                      <br>
32cbe7736   Андрей Ларионов   Обновление блейдо...
66
67
                      <label class="block text-sm">
                          <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Анкета действительна до <span style="color:#333">{{ $time_end_anketa }}</span></p>
5c0ae0519   Fedor   task-132687 minor...
68
69
                      </label>
                      <br>
32cbe7736   Андрей Ларионов   Обновление блейдо...
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
                  </div>
                  <div id="content-2">
                      <label class="block text-sm">
                          <span class="text-gray-700 dark:text-gray-400">Email</span>
                          <input name="email" id="email"
                                 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('email') ?? $worker->email ?? '' }}"
                          />
                          @error('email')
                          <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>
                          <input name="telephone" id="telephone"
                                 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('telephone') ?? $worker->telephone ?? '' }}"
                          />
                          @error('telephone')
                          <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>
                          <input name="address" id="address"
                                 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('address') ?? $worker->address ?? '' }}"
                          />
                          @error('address')
                          <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>
                          <input name="city" id="city"
                                 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('city') ?? $worker->city ?? '' }}"
                          />
                          @error('city')
                          <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>
  
                          <input name="photo" id="photo" type="file"
                                 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=""
                          />
                          @isset($worker->photo)
                              <img src="<?=asset(Storage::url($worker->photo))?>" width="150"/>
                          @endisset
                          @error('logo')
                          <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>
                          <input type="hidden" name="email_data" value="0" />
                          <input name="email_data" id="email_data" @php if ($worker->email_data) echo "checked"; @endphp
                                 placeholder=""
                                 type="checkbox"
                                 value="1"
                          />
                      </label>
  
                      <label class="block mt-4 text-sm">
                          <span class="text-gray-700 dark:text-gray-400">Об соискателе</span>
                          <textarea name="text" id="text"
                                    class="block w-full mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 form-textarea focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray"
                                    rows="3"
                                    placeholder="О соискателе"
                          >{{ old('text') ?? $worker->text ?? '' }}</textarea>
                      </label>
                  </div>
5c0ae0519   Fedor   task-132687 minor...
160
161
              </div>
              <br>
8c73c7b41   Андрей Ларионов   Категории ваканси...
162
163
164
165
166
              <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   Андрей Ларионов   Обновление блейдо...
167
168
169
170
                      <a href="{{ route('admin.workers') }}"
                         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>
8c73c7b41   Андрей Ларионов   Категории ваканси...
171
172
173
174
                  </div>
              </div>
          </div>
      </form>
8c73c7b41   Андрей Ларионов   Категории ваканси...
175
  @endsection