Blame view

resources/views/admin/worker/edit.blade.php 15.6 KB
8c73c7b41   Андрей Ларионов   Категории ваканси...
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
  @extends('layout.admin', ['title' => 'Админка - Редактирование соискателя'])
  
  @section('content')
      <h4 class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300">
          Соискатель-пользователь: "{{$worker->users->name_man}} ({{$worker->user_id}})"
      </h4>
      <form method="POST" action="">
          @csrf
          <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_company" id="name_company"
                         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_company') ?? $employer->name_company ?? '' }}"
                  />
                  @error('name_company')
                  <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">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->site ?? '' }}"
                  />
                  @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('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 name="email_data" id="email_data" <? if ($worker->email_data) echo "checked"; ?>
                         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=""
                  />
                  @error('email_data')
                  <span class="text-xs text-red-600 dark:text-red-400">
                    {{ $message }}
                  </span>
                  @enderror
              </label><br>
  
              <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 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>
                  </div>
              </div>
          </div>
      </form>
      <!--
      <label class="block mt-4 text-sm">
              <span class="text-gray-700 dark:text-gray-400">
                Requested Limit
              </span>
          <select
              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>$1,000</option>
              <option>$5,000</option>
              <option>$10,000</option>
              <option>$25,000</option>
          </select>
      </label>
  
      <label class="block mt-4 text-sm">
              <span class="text-gray-700 dark:text-gray-400">
                Multiselect
              </span>
          <select
              class="block w-full mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 form-multiselect focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray"
              multiple
          >
              <option>Option 1</option>
              <option>Option 2</option>
              <option>Option 3</option>
              <option>Option 4</option>
              <option>Option 5</option>
          </select>
      </label>
  
      <label class="block mt-4 text-sm">
          <span class="text-gray-700 dark:text-gray-400">Message</span>
          <textarea
              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="Enter some long form content."
          ></textarea>
      </label>
  
      <div class="flex mt-6 text-sm">
          <label class="flex items-center dark:text-gray-400">
              <input
                  type="checkbox"
                  class="text-purple-600 form-checkbox focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray"
              />
              <span class="ml-2">
                  I agree to the
                  <span class="underline">privacy policy</span>
                </span>
          </label>
      </div>
  </div>
  
  <!-- Validation inputs -->
      <!--<h4
          class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300"
      >
          Validation
      </h4>
      <div
          class="px-4 py-3 mb-8 bg-white rounded-lg shadow-md dark:bg-gray-800"
      >
          <!-- Invalid input -->
      <!--<label class="block text-sm">
              <span class="text-gray-700 dark:text-gray-400">
                Invalid input
              </span>
          <input
              class="block w-full mt-1 text-sm border-red-600 dark:text-gray-300 dark:bg-gray-700 focus:border-red-400 focus:outline-none focus:shadow-outline-red form-input"
              placeholder="Jane Doe"
          />
          <span class="text-xs text-red-600 dark:text-red-400">
                Your password is too short.
              </span>
      </label>
  
      <!-- Valid input -->
      <!--<label class="block mt-4 text-sm">
              <span class="text-gray-700 dark:text-gray-400">
                Valid input
              </span>
          <input
              class="block w-full mt-1 text-sm border-green-600 dark:text-gray-300 dark:bg-gray-700 focus:border-green-400 focus:outline-none focus:shadow-outline-green form-input"
              placeholder="Jane Doe"
          />
          <span class="text-xs text-green-600 dark:text-green-400">
                Your password is strong.
              </span>
      </label>
  
      <!-- Helper text -->
      <!--<label class="block mt-4 text-sm">
              <span class="text-gray-700 dark:text-gray-400">
                Helper text
              </span>
          <input
              class="block w-full mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray form-input"
              placeholder="Jane Doe"
          />
          <span class="text-xs text-gray-600 dark:text-gray-400">
                Your password must be at least 6 characters long.
              </span>
      </label>
  </div>
  
  <!-- Inputs with icons -->
      <!--<h4
          class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300"
      >
          Icons
      </h4>
      <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">Icon left</span>
              <!-- focus-within sets the color for the icon when input is focused -->
      <!--<div
          class="relative text-gray-500 focus-within:text-purple-600 dark:focus-within:text-purple-400"
      >
          <input
              class="block w-full pl-10 mt-1 text-sm text-black dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray form-input"
              placeholder="Jane Doe"
          />
          <div
              class="absolute inset-y-0 flex items-center ml-3 pointer-events-none"
          >
              <svg
                  class="w-5 h-5"
                  aria-hidden="true"
                  fill="none"
                  stroke-linecap="round"
                  stroke-linejoin="round"
                  stroke-width="2"
                  viewBox="0 0 24 24"
                  stroke="currentColor"
              >
                  <path
                      d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
                  ></path>
              </svg>
          </div>
      </div>
  </label>
  
  <label class="block mt-4 text-sm">
      <span class="text-gray-700 dark:text-gray-400">Icon right</span>
      <!-- focus-within sets the color for the icon when input is focused -->
      <!--<div
          class="relative text-gray-500 focus-within:text-purple-600 dark:focus-within:text-purple-400"
      >
          <input
              class="block w-full pr-10 mt-1 text-sm text-black dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray form-input"
              placeholder="Jane Doe"
          />
          <div
              class="absolute inset-y-0 right-0 flex items-center mr-3 pointer-events-none"
          >
              <svg
                  class="w-5 h-5"
                  aria-hidden="true"
                  fill="none"
                  stroke-linecap="round"
                  stroke-linejoin="round"
                  stroke-width="2"
                  viewBox="0 0 24 24"
                  stroke="currentColor"
              >
                  <path
                      d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
                  ></path>
              </svg>
          </div>
      </div>
  </label>
  </div>
  
  <!-- Inputs with buttons -->
      <!--<h4
          class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300"
      >
          Buttons
      </h4>
      <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">
                    Button left
                  </span>
              <div class="relative">
                  <input
                      class="block w-full pl-20 mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray form-input"
                      placeholder="Jane Doe"
                  />
                  <button
                      class="absolute inset-y-0 px-4 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-l-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray"
                  >
                      Click
                  </button>
              </div>
          </label>
  
          <label class="block mt-4 text-sm">
                  <span class="text-gray-700 dark:text-gray-400">
                    Button right
                  </span>
              <div
                  class="relative text-gray-500 focus-within:text-purple-600"
              >
                  <input
                      class="block w-full pr-20 mt-1 text-sm text-black dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray form-input"
                      placeholder="Jane Doe"
                  />
                  <button
                      class="absolute inset-y-0 right-0 px-4 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-r-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple"
                  >
                      Click
                  </button>
              </div>
          </label>
      </div>-->
  @endsection