Blame view

resources/views/employers/edit_vacancy.blade.php 17.8 KB
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
1
2
3
  @extends('layout.frontend', ['title' => 'Редактирование вакансии РекаМоре'])
  
  @section('scripts')
31fe4e458   Андрей Ларионов   Показ проекта зак...
4
5
6
7
8
9
      <script>
          console.log('Приближаемся к системе, нас рой тут...');
          $(document).on('change', '#position_id', function() {
              var this_ = $(this);
              var val_ = this_.val();
              var ajax_ = $('#job_title_id');
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
10

31fe4e458   Андрей Ларионов   Показ проекта зак...
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
              console.log('Создания списка людей, которые поднимутся на корабль...');
  
              $.ajax({
                  type: "GET",
                  url: "{{ route('employer.selected_people') }}",
                  data: "id="+val_,
                  success: function (data) {
                      console.log('Ответка пришла');
                      console.log('Список избранных людей создан');
                      ajax_.html(data);
                  },
                  headers: {
                      'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
                  },
                  error: function (data) {
                      console.log('Обрыв связи');
                      console.log('Error: ' + data);
                  }
              });
          });
      </script>
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
32
33
34
35
36
37
38
39
40
41
42
  @endsection
  @section('content')
      <section class="cabinet">
          <div class="container">
              <ul class="breadcrumbs cabinet__breadcrumbs">
                  <li><a href="{{ route('index') }}">Главная</a></li>
                  <li><b>Личный кабинет</b></li>
              </ul>
              <div class="cabinet__wrapper">
                  <div class="cabinet__side">
                      <div class="cabinet__side-toper">
6370754b6   Андрей Ларионов   Обновление бага с...
43
44
  
                              @include('employers.emblema')
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
45
46
47
48
49
                      </div>
  
                      @include('employers.menu', ['item' => 0])
  
                  </div>
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
50
                  <form class="cabinet__body" action="{{ route('employer.vacancy_save_me', ['ad_employer' => $ad_employer]) }}" method="POST">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
                      @csrf
                      <input type="hidden" name="employer_id" value="{{ $Employer->id }}"/>
                      <div class="cabinet__body-item">
                          <div class="cabinet__descr">
                              <h2 class="title cabinet__title">Редактировать вакансию</h2>
                              <p class="cabinet__text"><b>Данные по вакансии</b></p>
                              <p class="cabinet__text">Все поля обязательны для заполнения *</p>
                          </div>
                      </div>
                      <div class="cabinet__body-item">
                          <div class="cabinet__inputs">
                              <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group">
                                  <label class="form-group__label">Название вакансии</label>
                                  <div class="form-group__item">
                                      <input type="text" class="input" name="name" id="name" placeholder="Работа в море" value="{{ old('name') ?? $ad_employer->name ?? '' }}" required>
                                      @error('name')
                                      <span class="text-xs text-red-600">
                                            {{ $message }}
                                      </span>
                                      @enderror
                                  </div>
                              </div>
  
                              <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group">
31fe4e458   Андрей Ларионов   Показ проекта зак...
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
                                  <label class="form-group__label">Позиция на корабле</label>
                                  <div class="form-group__item">
                                      <div class="select">
                                          <select class="js-select2" name="position_id" id="position_id">
                                              @foreach ($Positions as $it)
                                                  <option value="{{ $it->id }}">{{ $it->name }}</option>
                                              @endforeach
                                          </select>
                                          @error('postion_id')
                                          <span class="text-xs text-red-600 dark:text-red-400">
                                                {{ $message }}
                                          </span>
                                          @enderror
                                      </div>
                                  </div>
                              </div>
  
                              <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
                                  <label class="form-group__label">Должность соискателя</label>
                                  <div class="form-group__item">
                                      <div class="select">
                                          <select class="js-select2" name="job_title_id" id="job_title_id">
                                              <option value="0"> Выберите должность из списка</option>
  
                                              @if ($jobs->count())
                                                  @foreach($jobs as $j)
                                                      <option value="{{ $j->id }}" @if ($j->id == $ad_employer->id) selected @endif>{{ $j->name }}</option>
                                                  @endforeach
                                              @endif
                                          </select>
                                          @error('job_title_id')
                                          <span class="text-xs text-red-600">
                                                {{ $message }}
                                          </span>
                                          @enderror
                                      </div>
                                  </div>
                              </div>
  
                              <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group">
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
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
                                  <label class="form-group__label">Категория (локация)</label>
                                  <div class="form-group__item">
                                      <div class="select">
                                          <select class="js-select2" name="category_id" id="category_id">
                                              @php $i = 1 @endphp
                                              @if ($categories->count())
                                                  @foreach($categories as $j)
                                                      @if ($i == 1) <option selected> Выберите категорию из списка</option>
                                                      @else
                                                          <option value="{{ $j->id }}">{{ $j->name }}</option>
                                                      @endif
                                                      @php $i++ @endphp
                                                  @endforeach
                                              @endif
                                          </select>
                                          @error('category_id')
                                          <span class="text-xs text-red-600 dark:text-red-400">
                                                {{ $message }}
                                          </span>
                                          @enderror
                                      </div>
                                  </div>
                              </div>
  
                              <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
                                  <label class="form-group__label">Телефон</label>
                                  <div class="form-group__item">
                                      <input type="text" class="input" name="telephone" id="telephone" value="{{ old('telephone') ?? $Employer->telephone ?? '' }}" placeholder="Свой телефон">
                                      @error('telephone')
                                      <span class="text-xs text-red-600">
                                            {{ $message }}
                                      </span>
                                      @enderror
                                  </div>
                              </div>
  
                              <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group">
                                  <label class="form-group__label">Емайл</label>
                                  <div class="form-group__item">
                                      <input type="text" class="input" name="email" id="email" value="{{ old('email') ?? $Employer->email ?? '' }}" placeholder="Своя почту">
                                      @error('email')
                                      <span class="text-xs text-red-600">
                                            {{ $message }}
                                      </span>
                                      @enderror
                                  </div>
                              </div>
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
162
                              <!--<div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
163
164
                                  <label class="form-group__label">Зарплата среднестатистическая</label>
                                  <div class="form-group__item">
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
165
                                      <input type="text" class="input" name="salary" id="salary" value="old('salary') ?? '' }}" placeholder="Среднестатистическая зарплата">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
166
167
168
169
170
171
172
173
174
175
176
                                      @error('salary')
                                      <span class="text-xs text-red-600">
                                            {{ $message }}
                                      </span>
                                      @enderror
                                  </div>
                              </div>
  
                              <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group">
                                  <label class="form-group__label">Минимальная зарплата</label>
                                  <div class="form-group__item">
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
177
                                      <input type="text" class="input" name="min_salary" id="min_salary" value=" old('min_salary') ?? '' }}" placeholder="Минимальная зарплата">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
178
179
180
181
182
183
184
185
186
187
188
                                      @error('min_salary')
                                      <span class="text-xs text-red-600">
                                            {{ $message }}
                                      </span>
                                      @enderror
                                  </div>
                              </div>
  
                              <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group">
                                  <label class="form-group__label">Максимальная зарплата</label>
                                  <div class="form-group__item">
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
189
                                      <input type="text" class="input" name="max_salary" id="max_salary" value=" old('max_salary') ?? '' }}" placeholder="Максимальная зарплата">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
190
191
192
193
194
195
196
197
198
199
200
                                      @error('salary')
                                      <span class="text-xs text-red-600 dark:text-red-400">
                                            {{ $message }}
                                      </span>
                                      @enderror
                                  </div>
                              </div>
  
                              <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group">
                                  <label class="form-group__label">Город-регион</label>
                                  <div class="form-group__item">
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
201
                                      <input type="text" class="input" name="city" id="city" value=" old('city') ?? $Employer[0]->city ?? '' }}" placeholder="Севастополь">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
202
203
204
205
206
207
208
209
210
211
212
                                      @error('city')
                                      <span class="text-xs text-red-600">
                                            {{ $message }}
                                      </span>
                                      @enderror
                                  </div>
                              </div>
  
                              <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group">
                                  <label class="form-group__label">Мощность</label>
                                  <div class="form-group__item">
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
213
                                      <input type="text" class="input" name="power" id="power" value=" old('power') ?? '' }}" placeholder="POWER-45">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
214
215
216
217
218
219
220
221
222
223
224
                                      @error('power')
                                      <span class="text-xs text-red-600">
                                            {{ $message }}
                                      </span>
                                      @enderror
                                  </div>
                              </div>
  
                              <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group">
                                  <label class="form-group__label">Суточные выплаты</label>
                                  <div class="form-group__item">
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
225
                                      <input type="text" class="input" name="sytki" id="sytki" value=" old('sytki') ?? '' }}" placeholder="2000">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
226
227
228
229
230
231
232
233
234
235
236
                                      @error('power')
                                      <span class="text-xs text-red-600">
                                            {{ $message }}
                                      </span>
                                      @enderror
                                  </div>
                              </div>
  
                              <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group">
                                  <label class="form-group__label">Начало отплытия</label>
                                  <div class="form-group__item">
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
237
                                      <input type="text" class="input" name="start" id="start" value=" old('start') ?? $Employer->ads->start ?? '' }}" placeholder="20 сентября 2024">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
238
239
240
241
242
243
                                      @error('power')
                                      <span class="text-xs text-red-600">
                                            {{ $message }}
                                      </span>
                                      @enderror
                                  </div>
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
244
                              </div>-->
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
245
246
247
248
249
250
  
                              <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group">
                                  <label class="form-group__label">Корабль для посадки</label>
                                  <div class="form-group__item">
                                      <div class="select">
                                          <select class="js-select2" name="flot" id="flot">
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
251

e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
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
                                              @if ($Employer->flots->count())
                                                  @foreach($Employer->flots as $j)
                                                      <option value="{{ $j->name }}">{{ $j->name }} ({{ $j->id }})</option>
                                                  @endforeach
                                              @endif
                                          </select>
                                          @error('flot')
                                          <span class="text-xs text-red-600">
                                                {{ $message }}
                                          </span>
                                          @enderror
                                      </div>
                                  </div>
                              </div>
  
                              <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group">
                                  <label class="form-group__label">Описание вакансии</label>
                                  <div class="form-group__item">
                                      <textarea class="textarea" name="text" id="text">{{ old('text') ?? $Employer[0]->text ?? '' }}</textarea>
                                      @error('text')
                                      <span class="text-xs text-red-600">
                                            {{ $message }}
                                      </span>
                                      @enderror
                                  </div>
                              </div>
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
278
                              <!--<div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
279
280
                                  <label class="form-group__label">Дополнительная информация</label>
                                  <div class="form-group__item">
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
281
282
                                      <textarea class="textarea" name="description" id="description"> old('description') ?? '' }}</textarea>
                                      @error('description')
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
283
284
285
286
287
                                      <span class="text-xs text-red-600">
                                            {{ $message }}
                                      </span>
                                      @enderror
                                  </div>
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
288
                              </div>-->
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
289
290
291
292
293
294
295
296
297
298
                          </div>
                          <a class="button cabinet__submit" href="{{ route('employer.vacancy_list') }}">Назад</a>
                          <button type="submit" class="button cabinet__submit">Опубликовать</button>
                      </div>
                  </form>
              </div>
          </div>
      </section>
      </div>
  @endsection