Blame view

resources/views/admin/employer/edit.blade.php 23.2 KB
c84db5243   Андрей Ларионов   Форма редактирова...
1
2
3
4
5
6
  @extends('layout.admin', ['title' => 'Админка - Редактирование работодателя'])
  
  @section('content')
      <h4 class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300">
          Работодатель-пользователь: "{{$employer->users->name_man}} ({{$employer->user_id}})"
      </h4>
8c73c7b41   Андрей Ларионов   Категории ваканси...
7
      <form method="POST" action="" enctype="multipart/form-data">
c84db5243   Андрей Ларионов   Форма редактирова...
8
          <div class="px-4 py-3 mb-8 bg-white rounded-lg shadow-md dark:bg-gray-800">
622420a67   Андрей Ларионов   Расширение функци...
9
10
11
12
13
14
              @csrf
          <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>
d152a3a68   Андрей Ларионов   Создание основных...
15
16
              <input type="radio" name="tab-btn" id="tab-btn-3" value="">
              <label for="tab-btn-3">Флот</label>
622420a67   Андрей Ларионов   Расширение функци...
17
              <div id="content-1">
c84db5243   Андрей Ларионов   Форма редактирова...
18

622420a67   Андрей Ларионов   Расширение функци...
19
20
21
22
                      <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"
09dcec17a   Hayk Nazaryan   fixes
23
                             placeholder="Имя компании" value="{{ old('name') ?? $employer->name_company ?? '' }}"
622420a67   Андрей Ларионов   Расширение функци...
24
25
26
27
28
29
30
31
32
                          />
                          @error('name')
                          <span class="text-xs text-red-600 dark:text-red-400">
                              {{ $message }}
                          </span>
                          @enderror
                      </label><br>
  
                      <label class="block text-sm">
74f9245c1   Hayk Nazaryan   show user email i...
33
34
35
36
37
38
39
40
                          <span class="text-gray-700 dark:text-gray-400">Email(Login)</span>
                          <input name="user_email" id="email" readonly
                                 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="{{ $employer->users->email }}"
                          />
                      </label><br>
  
                      <label class="block text-sm">
622420a67   Андрей Ларионов   Расширение функци...
41
                          <span class="text-gray-700 dark:text-gray-400">Email</span>
50aa60b60   Андрей Ларионов   Работодатели лого...
42
                          <input name="email" id="email"
c84db5243   Андрей Ларионов   Форма редактирова...
43
44
                         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') ?? $employer->email ?? '' }}"
622420a67   Андрей Ларионов   Расширение функци...
45
46
47
48
                          />
                           @error('email')
                           <span class="text-xs text-red-600 dark:text-red-400">
                                {{ $message }}
50aa60b60   Андрей Ларионов   Работодатели лого...
49
50
                           </span>
                           @enderror
622420a67   Андрей Ларионов   Расширение функци...
51
                      </label><br>
b57da0455   Hayk Nazaryan   add inpots to emp...
52
53
54
55
56
57
58
59
60
61
62
63
                  <label class="block text-sm">
                          <span class="text-gray-700 dark:text-gray-400">Email (alt)</span>
                          <input name="email_2" id="email_2"
                         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_2') ?? $employer->email_2 ?? '' }}"
                          />
                           @error('email_2')
                           <span class="text-xs text-red-600 dark:text-red-400">
                                {{ $message }}
                           </span>
                           @enderror
                      </label><br>
c84db5243   Андрей Ларионов   Форма редактирова...
64

622420a67   Андрей Ларионов   Расширение функци...
65
66
67
68
69
70
                      <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') ?? $employer->telephone ?? '' }}"
                              />
b57da0455   Hayk Nazaryan   add inpots to emp...
71
72
73
74
75
76
77
78
79
80
81
82
83
                              @error('telephon')
                              <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">Телефон (alt)</span>
                              <input name="telephone_2" id="telephone_2"
                                     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_2') ?? $employer->telephone_2 ?? '' }}"
                              />
                              @error('telephone_2')
622420a67   Андрей Ларионов   Расширение функци...
84
85
86
87
88
                              <span class="text-xs text-red-600 dark:text-red-400">
                                {{ $message }}
                          </span>
                              @enderror
                      </label><br>
c84db5243   Андрей Ларионов   Форма редактирова...
89

622420a67   Андрей Ларионов   Расширение функци...
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
                      <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') ?? $employer->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="site" id="site"
                                     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('site') ?? $employer->site ?? '' }}"
                              />
                              @error('site')
                              <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="logo" id="logo" 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($employer->logo)
                                  <img src="<?=asset(Storage::url($employer->logo))?>" width="150"/>
                              @endisset
                              @error('logo')
eae6b80f5   Андрей Ларионов   Работодатель лого
127
128
129
                                  <span class="text-xs text-red-600 dark:text-red-400">
                                    {{ $message }}
                                  </span>
622420a67   Андрей Ларионов   Расширение функци...
130
131
132
133
134
135
136
137
138
139
140
                              @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') ?? $employer->text ?? '' }}</textarea>
                      </label>
c84db5243   Андрей Ларионов   Форма редактирова...
141

00652ea57   Андрей Ларионов   Оптимизация запро...
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
                      <hr>
  
                  <label class="block mt-4 text-sm">
                      <span class="text-gray-700 dark:text-gray-400">Категории</span>
  
                      <select name="category" id="category" class="form-control">
                      @foreach($select_category as $cat)
                          <option value="{{ $cat->name }}"
                                  @isset($employer)
                                  @if($cat->name == $employer->category)
                                  selected
                              @endif
                              @endisset
                          >{{ $cat->name }}</option>
                      @endforeach
                      </select>
  
                      @error('category')
                      <div class="alert alert-danger">{{ $message }}</div>
                      @enderror
                  </label>
  
                      <label class="block mt-4 text-sm">
                          <span class="text-gray-700 dark:text-gray-400">Комментарий админа</span>
                          <textarea name="comment_admin" id="comment_admin"
                                    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('comment_admin') ?? $employer->comment_admin ?? '' }}</textarea>
                      </label>
c84db5243   Андрей Ларионов   Форма редактирова...
172
              </div>
622420a67   Андрей Ларионов   Расширение функци...
173
              <div id="content-2">
36b239fd9   Hayk Nazaryan   user role fixes
174
175
176
177
178
                  <h4 class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300">
                      Права работодателя:
                  </h4><br>
  
                  <label class="block text-sm flex">
622420a67   Андрей Ларионов   Расширение функци...
179
180
                      <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Просмотр базы резюме </p>
                      <input type="hidden" name="is_lookin" value="0" />
36b239fd9   Hayk Nazaryan   user role fixes
181
                      <input name="is_lookin" id="is_lookin" <?php if ($employer->users->is_lookin) echo "checked";?>
622420a67   Андрей Ларионов   Расширение функци...
182
183
                      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"
36b239fd9   Hayk Nazaryan   user role fixes
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
                      />
                  </label><br>
  
                  <label class="block text-sm flex">
                      <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Просмотр базы данных</p>
                      <input type="hidden" name="show_database" value="0" />
                      <input name="show_database" id="show_database" <?php if ($employer->users->show_database) echo "checked";?>
                      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"
                      />
                  </label><br>
  
                  <label class="block text-sm flex">
                      <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Автоподнятие вакансий</p>
                      <input type="hidden" name="can_autolift" value="0" />
                      <input name="can_autolift" id="can_autolift" <?php if ($employer->users->can_autolift) echo "checked";?>
                      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"
                      />
                  </label><br>
622420a67   Андрей Ларионов   Расширение функци...
204

36b239fd9   Hayk Nazaryan   user role fixes
205
                  <label class="block text-sm flex">
622420a67   Андрей Ларионов   Расширение функци...
206
207
                      <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Отправка сообщений</p>
                      <input type="hidden" name="is_message" value="0" />
03e95a0b5   Сергей П   Изменения для адм...
208
                      <input name="is_message" id="is_message" <?php if ($employer->users->is_message) echo "checked";?>
622420a67   Андрей Ларионов   Расширение функци...
209
210
                      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"
36b239fd9   Hayk Nazaryan   user role fixes
211
212
                      />
                  </label><br>
622420a67   Андрей Ларионов   Расширение функци...
213

36b239fd9   Hayk Nazaryan   user role fixes
214
                  <label class="block text-sm flex">
622420a67   Андрей Ларионов   Расширение функци...
215
216
                      <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Публикация вакансий</p>
                      <input type="hidden" name="is_public" value="0" />
03e95a0b5   Сергей П   Изменения для адм...
217
                      <input name="is_public" id="is_public" <?php if ($employer->users->is_public) echo "checked";?>
622420a67   Андрей Ларионов   Расширение функци...
218
219
                      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"
36b239fd9   Hayk Nazaryan   user role fixes
220
221
                      />
                  </label><br>
622420a67   Андрей Ларионов   Расширение функци...
222

36b239fd9   Hayk Nazaryan   user role fixes
223
                  <label class="block text-sm flex">
622420a67   Андрей Ларионов   Расширение функци...
224
225
                      <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Работодатель скрыт </p>
                      <input type="hidden" name="status_hidden" value="0" />
03e95a0b5   Сергей П   Изменения для адм...
226
                      <input name="status_hidden" <?php if ($employer->status_hidden) echo "checked";?>
622420a67   Андрей Ларионов   Расширение функци...
227
228
229
230
                      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"
                      />
                  </label><br>
36b239fd9   Hayk Nazaryan   user role fixes
231
                  <label class="block text-sm flex">
622420a67   Андрей Ларионов   Расширение функци...
232
233
                      <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Компания подтверждена </p>
                      <input type="hidden" name="oficial_status" value="0" />
03e95a0b5   Сергей П   Изменения для адм...
234
                      <input name="oficial_status" <?php if ($employer->oficial_status) echo "checked";?>
622420a67   Андрей Ларионов   Расширение функци...
235
236
237
238
                      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"
                      />
                  </label><br>
36b239fd9   Hayk Nazaryan   user role fixes
239
                  <label class="block text-sm flex">
622420a67   Андрей Ларионов   Расширение функци...
240
241
                      <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Разрешение публикации в соц.сетях </p>
                      <input type="hidden" name="social_is" value="0" />
03e95a0b5   Сергей П   Изменения для адм...
242
                      <input name="social_is" <?php if ($employer->social_is) echo "checked";?>
622420a67   Андрей Ларионов   Расширение функци...
243
244
245
246
                      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"
                      />
                  </label><br>
36b239fd9   Hayk Nazaryan   user role fixes
247
                  <label class="block text-sm flex">
622420a67   Андрей Ларионов   Расширение функци...
248
249
                      <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Рассылка </p>
                      <input type="hidden" name="sending_is" value="0" />
03e95a0b5   Сергей П   Изменения для адм...
250
                      <input name="sending_is" <?php if ($employer->sending_is) echo "checked";?>
622420a67   Андрей Ларионов   Расширение функци...
251
252
253
254
255
256
                      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"
                      />
                  </label><br>
  
              </div>
d152a3a68   Андрей Ларионов   Создание основных...
257

622420a67   Андрей Ларионов   Расширение функци...
258
              <div id="content-3">
d152a3a68   Андрей Ларионов   Создание основных...
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
                  <label class="block text-sm">
                      <span class="text-gray-700 dark:text-gray-400">Флоты</span>
                      <a href="{{ route('admin.flot_add', ['employer' => $employer->id]) }}"
                         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>
                      @if ($flots->count())
                          <table class="w-full whitespace-no-wrap">
                              <thead>
                                  <tr class="text-xs font-semibold tracking-wide text-left text-gray-500 uppercase border-b dark:border-gray-700 bg-gray-50 dark:text-gray-400 dark:bg-gray-800">
                                      <th class="px-4 py-3">ID</th>
                                      <th class="px-4 py-3">Название</th>
                                      <th class="px-4 py-3">Картинка</th>
                                      <th class="px-4 py-3">Дата регист.</th>
                                      <th class="px-4 py-3">Редакт.</th>
                                  </tr>
                              </thead>
                                      <tbody class="bg-white divide-y dark:divide-gray-700 dark:bg-gray-800">
                                      @foreach($flots as $flot)
                                          <tr class="text-gray-700 dark:text-gray-400">
                                              <td class="px-4 py-3 text-xs">
                                                  {{ $flot->id }}
                                              </td>
                                              <td class="px-4 py-3 text-xs">
                                                  {{ $flot->name }}
                                              </td>
                                              <td class="px-4 py-3 text-xs">
                                                  @if (isset($flot->image))
                                                      <div class="flex items-center text-sm">
                                                          <div class="relative hidden w-8 h-8 mr-3 rounded-full md:block">
                                                              <img
                                                                  class="object-cover w-full h-full rounded-full"
                                                                  src="{{ asset(Storage::url($flot->image)) }}"
                                                                  alt="{{ $flot->name }}"
                                                                  loading="lazy"
                                                              />
                                                              <div
                                                                  class="absolute inset-0 rounded-full shadow-inner"
                                                                  aria-hidden="true"
                                                              ></div>
                                                          </div>
                                                      </div>
                                                  @else
                                                      -
                                                  @endif
                                              </td>
                                              <td class="px-4 py-3 text-xs">
                                                  {{ $flot->created_at }}
                                              </td>
                                              <td class="px-4 py-3 text-xs">
                                                  <div class="flex items-center text-sm">
                                                      <div>
                                                          <a href="{{ route('admin.flot', ['flot' => $flot->id, 'employer' => $flot->employer_id]) }}" class="text-xs text-gray-600 dark:text-gray-400">
                                                              Редактировать
                                                          </a> |
                                                          <a href="{{ route('admin.flot_delete', ['flot' => $flot->id, 'employer_id' => $flot->employer_id]) }}" class="text-xs text-gray-600 dark:text-gray-400">
                                                              Удалить
                                                          </a>
                                                      </div>
                                                  </div>
                                              </td>
                                          </tr>
                                      @endforeach
                              </tbody>
                          </table>
                      @else
                          <h2>Нет данных</h2>
                      @endif
                  </label>
622420a67   Андрей Ларионов   Расширение функци...
328
329
330
331
332
333
334
335
              </div>
          </div>
          <br>
          <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   Андрей Ларионов   Обновление блейдо...
336
337
338
339
                  <a href="{{ route('admin.employers') }}"
                     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>
622420a67   Андрей Ларионов   Расширение функци...
340
              </div>
622420a67   Андрей Ларионов   Расширение функци...
341
          </div>
c84db5243   Андрей Ларионов   Форма редактирова...
342
343
          </div>
      </form>
c84db5243   Андрей Ларионов   Форма редактирова...
344
  @endsection