Blame view
resources/views/workers/cabinet.blade.php
40 KB
e3c7b0ffb Коммит на понедел... |
1 2 3 |
@extends('layout.frontend', ['title' => 'Моя анкета - РекаМоре']) @section('scripts') |
99a41e761 Личный кабинет по... |
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<script> console.log('Test system'); $(document).on('click', '#button_new_doc', function() { var this_ = $(this); var val_ = this_.attr('data-val'); var new_diplom = $('#new_diplom'); var new_diplom_val = new_diplom.val(); var new_data_begin = $('#new_data_begin'); var new_data_begin_val = new_data_begin.val(); var new_data_end = $('#new_data_end'); var new_data_end_val = new_data_end.val(); var education = $('#education'); var education_val = education.val(); var worker_id = $('#new_id'); var worker_val = worker_id.val(); |
e3c7b0ffb Коммит на понедел... |
19 |
|
99a41e761 Личный кабинет по... |
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 |
console.log('sort items ' + val_); if (new_diplom_val == '') { new_diplom.addClass('err_red'); console.log('Border Up'); } else { $.ajax({ type: "GET", url: "{{ route('worker.add_serificate') }}", data: "worker_id="+worker_val+"&date_begin="+new_data_begin_val + "&end_begin=" + new_data_end_val + "&name=" + new_diplom_val + "&education="+education_val, success: function (data) { console.log('Блокировка...'); console.log(data); $('#sertificate').html(data); if (new_diplom.hasClass('err_red')) new_diplom.removeClass('err_red'); }, headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') }, error: function (data) { data = JSON.stringify(data); console.log('Error: ' + data); } }); } }); $(document).on('click', '#btn_new_diplom123', function() { var this_ = $(this); var val_ = this_.attr('data-val'); var documents = $('#documents'); var doc_val = documents.val(); var block = $('#ajax_dop_diplomi'); console.log('worker_id='+val_+'it_infoblock='+ doc_val); $.ajax({ type: "GET", url: "", data: "worker_id="+val_+"&infoblok_id="+doc_val, success: function (data) { location.url = data; console.log('Добавление документа-диплома'); console.log(data); block.html(data); }, headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') }, error: function (data) { data = JSON.stringify(data); console.log('Error: ' + data); } }); }); $(document).on('click', '#new_work', function() { var this_ = $(this); var val_ = this_.attr('data-val'); var new_diplom = $('#new_diplom').val(); var new_data_begin = $('#new_data_begin').val(); var new_data_end = $('#new_data_end').val(); var new_job_title = $('#new_job_title').val(); var new_teplohod = $('#new_teplohod').val(); var new_GWT = $('#new_GWT').val(); var new_KBT = $('#new_KBT').val(); var new_Begin_work = $('#new_Begin_work').val(); var new_End_work = $('#new_End_work').val(); var new_name_company = $('#new_name_company').val(); console.log('worker_id='+val_+'it_infoblock='+ doc_val); $.ajax({ type: "GET", url: "", data: "worker_id="+val_+"&infoblok_id="+doc_val, success: function (data) { location.url = data; console.log('Добавление документа-диплома'); console.log(data); block.html(data); }, headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') }, error: function (data) { data = JSON.stringify(data); console.log('Error: ' + data); } }); }); |
5725a3636 Обновление понеде... |
111 112 113 114 115 116 117 118 119 120 |
$(document).on('click', '#old_year', function() { var this_ = $(this); var val = this_.val(); if (val < 0) $('#old_year').val(0); console.log('Возраст не может выполнить такую операцию'); }); |
99a41e761 Личный кабинет по... |
121 |
</script> |
e3c7b0ffb Коммит на понедел... |
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
@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"> @include('workers.emblema') </div> @include('workers.menu', ['item' => 1]) </div> |
99a41e761 Личный кабинет по... |
140 141 142 |
<form class="cabinet__body" action="{{ route('worker.cabinet_save', ['worker' => $Worker[0]->id]) }}" enctype="multipart/form-data" method="POST"> @csrf @include('messages_error') |
e3c7b0ffb Коммит на понедел... |
143 144 145 146 |
<div class="cabinet__body-item"> <div class="cabinet__anketa"> <h2 class="title cabinet__title">Моя анкета</h2> <div class="cabinet__anketa-buttons"> |
99a41e761 Личный кабинет по... |
147 |
<a href="{{ route('worker.up', ['worker' => $Worker[0]->id]) }}" class="button">Поднять резюме</a> |
7571b20fd Коммит 13 марта 2024 |
148 |
<a href="{{ route('resume_download', ['worker' => $Worker[0]->id]) }}" target="_blank" class="button"> |
e3c7b0ffb Коммит на понедел... |
149 |
<svg> |
99a41e761 Личный кабинет по... |
150 |
<use xlink:href="{{ asset('images/sprite.svg#share') }}"></use> |
e3c7b0ffb Коммит на понедел... |
151 152 153 154 155 156 157 158 159 160 161 162 |
</svg> Скачать резюме </a> </div> </div> </div> <div class="cabinet__body-item"> <div class="cabinet__stats"> <h3 class="cabinet__subtitle cabinet__stats-title">Статистика</h3> <div class="cabinet__stats-body"> <div class="cabinet__stats-item"> <svg> |
99a41e761 Личный кабинет по... |
163 |
<use xlink:href="{{ asset('images/sprite.svg#eye-3') }}"></use> |
e3c7b0ffb Коммит на понедел... |
164 165 |
</svg> <span>Просмотров:</span> |
7571b20fd Коммит 13 марта 2024 |
166 |
<b>@if (isset($stat[0]->lookin)) {{ $stat[0]->lookin }} @else 0 @endif</b> |
e3c7b0ffb Коммит на понедел... |
167 168 169 |
</div> <div class="cabinet__stats-item"> <svg> |
99a41e761 Личный кабинет по... |
170 |
<use xlink:href="{{ asset('images/sprite.svg#warning') }}"></use> |
e3c7b0ffb Коммит на понедел... |
171 172 |
</svg> <span>Отзывов:</span> |
7571b20fd Коммит 13 марта 2024 |
173 |
<b>@if (isset($stat[0]->message)) {{ $stat[0]->message }} @else 0 @endif</b> |
e3c7b0ffb Коммит на понедел... |
174 175 |
</div> </div> |
7571b20fd Коммит 13 марта 2024 |
176 |
<div class="cabinet__stats-subtitle">Анкета заполнена на {{ $persent }}%</div> |
e3c7b0ffb Коммит на понедел... |
177 |
<div class="cabinet__stats-line"> |
7571b20fd Коммит 13 марта 2024 |
178 |
<span style="width:{{ $persent }}%"></span> |
e3c7b0ffb Коммит на понедел... |
179 180 181 182 183 184 185 186 |
</div> <div class="cabinet__stats-bottom">Заполните профиль, чтобы повысить процент анкеты на 80%</div> </div> </div> <div class="cabinet__body-item"> <h3 class="cabinet__subtitle">Профиль</h3> <div class="cabinet__avatar"> <div class="cabinet__avatar-pic"> |
99a41e761 Личный кабинет по... |
187 188 189 190 |
@if (!empty($Worker[0]->photo)) <img src="{{ asset(Storage::url($Worker[0]->photo)) }}"/> @else |
e3c7b0ffb Коммит на понедел... |
191 |
<svg> |
99a41e761 Личный кабинет по... |
192 |
<use xlink:href="{{ asset('images/sprite.svg#pic') }}"></use> |
e3c7b0ffb Коммит на понедел... |
193 |
</svg> |
99a41e761 Личный кабинет по... |
194 |
@endif |
e3c7b0ffb Коммит на понедел... |
195 196 197 198 |
</div> <div class="cabinet__avatar-form"> <label class="file"> <span class="file__input"> |
99a41e761 Личный кабинет по... |
199 |
<input type="file" name="photo" id="photo"> |
e3c7b0ffb Коммит на понедел... |
200 201 |
<span class="button"> <svg> |
99a41e761 Личный кабинет по... |
202 |
<use xlink:href="{{ asset('images/sprite.svg#plus') }}"></use> |
e3c7b0ffb Коммит на понедел... |
203 204 205 206 207 |
</svg> Загрузить </span> </span> </label> |
99a41e761 Личный кабинет по... |
208 |
<p class="cabinet__text">Загрузите фотографию в формате svg., jpg., jpeg., png.</p> |
e3c7b0ffb Коммит на понедел... |
209 210 211 212 213 214 215 216 |
</div> </div> </div> <div class="cabinet__body-item"> <div class="cabinet__inputs"> <div class="cabinet__inputs-item form-group"> <label class="form-group__label">Электронная почта *</label> <div class="form-group__item"> |
99a41e761 Личный кабинет по... |
217 |
<input type="email" name="email" id="email" value="{{ $Worker[0]->email }}" class="input" placeholder="info@rekamore.su" required> |
e3c7b0ffb Коммит на понедел... |
218 219 220 |
</div> </div> <div class="cabinet__inputs-item form-group"> |
99a41e761 Личный кабинет по... |
221 222 223 224 225 226 227 228 229 230 231 232 |
<label class="form-group__label">Статус</label> <div class="form-group__item"> <div class="select"> <select class="js-select2" name="status_work" id="status_work"> <option value="1" @if ($Worker[0]->status_work == 1) selected @endif>Не указано</option> <option value="2" @if ($Worker[0]->status_work == 2) selected @endif>Не ищу работу</option> <option value="0" @if ($Worker[0]->status_work == 0) selected @endif>Ищу работу</option> </select> </div> </div> </div> <!--<div class="cabinet__inputs-item form-group"> |
e3c7b0ffb Коммит на понедел... |
233 234 235 236 |
<label class="form-group__label">Статус *</label> <div class="form-group__item"> <input type="text" class="input" required> </div> |
99a41e761 Личный кабинет по... |
237 238 239 240 241 242 243 |
</div>--> @if (isset($Worker[0]->users)) <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" name="surname" id="surmane" class="input" value="{{ $Worker[0]->users->surname }}" placeholder="Филиппов" required> </div> |
e3c7b0ffb Коммит на понедел... |
244 245 |
</div> <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group"> |
99a41e761 Личный кабинет по... |
246 |
<label class="form-group__label">Имя *</label> |
e3c7b0ffb Коммит на понедел... |
247 |
<div class="form-group__item"> |
99a41e761 Личный кабинет по... |
248 |
<input type="text" name="name_man" id="name_man" class="input" value="{{ $Worker[0]->users->name_man }}" placeholder="Егор" required> |
e3c7b0ffb Коммит на понедел... |
249 250 |
</div> </div> |
99a41e761 Личный кабинет по... |
251 252 253 254 255 256 257 |
<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="surname2" id="surmane2" value="{{ $Worker[0]->users->surname2 }}" placeholder="Алексеевич"> </div> </div> @endif |
e3c7b0ffb Коммит на понедел... |
258 259 260 261 262 263 264 265 |
</div> </div> <div class="cabinet__body-item"> <h3 class="cabinet__subtitle">Основная информация</h3> <div class="cabinet__inputs"> <div class="cabinet__inputs-item cabinet__inputs-item_min form-group"> <label class="form-group__label">Возраст</label> <div class="form-group__item"> |
99a41e761 Личный кабинет по... |
266 |
<input type="number" name="old_year" id="old_year" value="{{ $Worker[0]->old_year }}" class="input" placeholder="0" required> |
e3c7b0ffb Коммит на понедел... |
267 268 269 |
</div> </div> <div class="cabinet__inputs-item cabinet__inputs-item_max form-group"> |
99a41e761 Личный кабинет по... |
270 |
<label class="form-group__label">Желаемые вакансии</label> |
e3c7b0ffb Коммит на понедел... |
271 272 |
<div class="form-group__item"> <div class="select"> |
99a41e761 Личный кабинет по... |
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
<select class="js-select2" name="job_title_id[]" id="job_title_id[]" multiple="multiple"> @if ($Job_titles->count()) @foreach($Job_titles as $it) @if (isset($Worker[0]->job_titles)) @if ($Worker[0]->job_titles->count()) @foreach($Worker[0]->job_titles as $select) <option value="{{ $it->id }}" @if ($it->id == $select->id) selected @endif>{{ $it->name }}</option> @endforeach @else <option value="{{ $it->id }}">{{ $it->name }} ({{ $it->id }})</option> @endif @else <option value="{{ $it->id }}">{{ $it->name }} ({{ $it->id }})</option> @endif @endforeach @endif |
e3c7b0ffb Коммит на понедел... |
289 290 291 292 293 |
</select> </div> </div> </div> <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group"> |
99a41e761 Личный кабинет по... |
294 |
<label class="form-group__label">Город</label> |
e3c7b0ffb Коммит на понедел... |
295 |
<div class="form-group__item"> |
99a41e761 Личный кабинет по... |
296 |
<input type="text" name="city" id="city" value="{{ $Worker[0]->city }}" class="input" placeholder="Челябинск" required> |
e3c7b0ffb Коммит на понедел... |
297 298 299 300 301 302 |
</div> </div> <div class="cabinet__inputs-item form-group"> <label class="form-group__label">Опыт работы</label> <div class="form-group__item"> <div class="select"> |
99a41e761 Личный кабинет по... |
303 304 305 306 307 308 309 |
<select class="js-select2" id="experience" name="experience"> <option value="Не указано" @if (empty($Worker[0]->experience)) selected @endif>Не указано</option> <option value="меньше 1 года" @if ($Worker[0]->experience == 'меньше 1 года') selected @endif>меньше 1 года</option> <option value="от 1 года до 3 лет" @if ($Worker[0]->experience == 'от 1 года до 3 лет') selected @endif>от 1 года до 3 лет</option> <option value="от 3 до 5 лет" @if ($Worker[0]->experience == 'от 3 до 5 лет') selected @endif>от 3 до 5 лет</option> <option value="от 5 до 10 лет" @if ($Worker[0]->experience == 'от 5 до 10 лет') selected @endif>от 5 до 10 лет</option> <option value="Больше 10 лет" @if ($Worker[0]->experience == 'Больше 10 лет') selected @endif>Больше 10 лет</option> |
e3c7b0ffb Коммит на понедел... |
310 311 312 313 |
</select> </div> </div> </div> |
99a41e761 Личный кабинет по... |
314 |
|
e3c7b0ffb Коммит на понедел... |
315 |
<div class="cabinet__inputs-item form-group"> |
99a41e761 Личный кабинет по... |
316 |
<label class="form-group__label">Номер телефона 1</label> |
e3c7b0ffb Коммит на понедел... |
317 |
<div class="form-group__item"> |
99a41e761 Личный кабинет по... |
318 |
<input type="tel" name="telephone" id="telephone" value="{{ old('telephone') ?? $Worker[0]->telephone ?? '' }}" class="input" placeholder="+7 (___) ___-__-__" required> |
e3c7b0ffb Коммит на понедел... |
319 320 321 |
</div> </div> <div class="cabinet__inputs-item form-group"> |
99a41e761 Личный кабинет по... |
322 |
<label class="form-group__label">Номер телефона 2</label> |
e3c7b0ffb Коммит на понедел... |
323 |
<div class="form-group__item"> |
99a41e761 Личный кабинет по... |
324 |
<input type="tel" name="telephone2" id="telephon2" value="{{ old('telephone2') ?? $Worker[0]->telephone2 ?? '' }}" class="input" placeholder="+7 (___) ___-__-__"> |
e3c7b0ffb Коммит на понедел... |
325 326 327 328 |
</div> </div> </div> </div> |
99a41e761 Личный кабинет по... |
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 |
<div id="sertificate" name="sertificate"> @if ((isset($Worker[0]->sertificate)) && ($Worker[0]->sertificate->count() > 0)) @php $i = 0; @endphp @foreach($Worker[0]->sertificate as $it) <div style="margin-bottom: 20px" class="cabinet__body-item"> @if ($i == 0) <h3 class="cabinet__subtitle">Сертификаты / документы</h3> @endif <h4 class="cabinet__h4">Сертификат {{ $i+1 }}</h4> <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" value="{{ $it->name }}" disabled> </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" value="{{ $it->date_begin }} - {{ $it->end_begin }}" disabled> </div> </div> <a href="{{ route('worker.delete_sertificate', ['doc' => $it->id]) }}" class="button button_light"> <svg> <use xlink:href="{{ asset('images/sprite.svg#del') }}"></use> </svg> Удалить </a> |
e3c7b0ffb Коммит на понедел... |
358 359 |
</div> </div> |
99a41e761 Личный кабинет по... |
360 361 362 363 364 365 |
@php $i++ @endphp @endforeach @else <div style="margin-bottom: 20px" class="cabinet__body-item"> <h3 class="cabinet__subtitle">Сертификаты / документы</h3> Нет сертификатов |
e3c7b0ffb Коммит на понедел... |
366 |
</div> |
99a41e761 Личный кабинет по... |
367 |
@endif |
e3c7b0ffb Коммит на понедел... |
368 |
</div> |
99a41e761 Личный кабинет по... |
369 |
|
e3c7b0ffb Коммит на понедел... |
370 |
<div class="cabinet__body-item"> |
99a41e761 Личный кабинет по... |
371 |
<h4 class="cabinet__h4">Добавить сертификат</h4> |
e3c7b0ffb Коммит на понедел... |
372 |
<div class="cabinet__inputs"> |
99a41e761 Личный кабинет по... |
373 374 |
<input type="hidden" name="new_id" id="new_id" class="input" value="{{ $Worker[0]->id }}"> <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group"> |
e3c7b0ffb Коммит на понедел... |
375 376 |
<label class="form-group__label">Название сертификата</label> <div class="form-group__item"> |
99a41e761 Личный кабинет по... |
377 |
<input type="text" name="new_diplom" id="new_diplom" class="input" value="Диплом о дополнительном образовании"> |
e3c7b0ffb Коммит на понедел... |
378 379 380 |
</div> </div> <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group"> |
99a41e761 Личный кабинет по... |
381 |
<label class="form-group__label">Дата поступления</label> |
e3c7b0ffb Коммит на понедел... |
382 |
<div class="form-group__item"> |
99a41e761 Личный кабинет по... |
383 |
<input type="text" name="new_data_begin" id="new_data_begin" class="input" value="01.09.23"> |
e3c7b0ffb Коммит на понедел... |
384 385 |
</div> </div> |
e3c7b0ffb Коммит на понедел... |
386 |
<div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group"> |
99a41e761 Личный кабинет по... |
387 |
<label class="form-group__label">Дата окончания</label> |
e3c7b0ffb Коммит на понедел... |
388 |
<div class="form-group__item"> |
99a41e761 Личный кабинет по... |
389 |
<input type="text" name="new_data_end" id="new_data_end" class="input" value="04.11.26"> |
e3c7b0ffb Коммит на понедел... |
390 391 392 |
</div> </div> <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group"> |
99a41e761 Личный кабинет по... |
393 |
<label class="form-group__label">Дата окончания</label> |
e3c7b0ffb Коммит на понедел... |
394 |
<div class="form-group__item"> |
99a41e761 Личный кабинет по... |
395 |
<input type="text" name="education" id="education" class="input" value="Учебное заведение"> |
e3c7b0ffb Коммит на понедел... |
396 397 |
</div> </div> |
99a41e761 Личный кабинет по... |
398 |
<div class="button button_light" data-val="{{ $Worker[0]->id }}" id="button_new_doc" name="button_new_doc"> |
e3c7b0ffb Коммит на понедел... |
399 |
Добавить сертификат |
99a41e761 Личный кабинет по... |
400 |
</div> |
e3c7b0ffb Коммит на понедел... |
401 402 |
</div> </div> |
99a41e761 Личный кабинет по... |
403 404 |
<div class="cabinet__body-item" name="ajax_dop_diplomi" id="ajax_dop_diplomi"> |
e3c7b0ffb Коммит на понедел... |
405 |
<h4 class="cabinet__h4">Дополнительная информация</h4> |
99a41e761 Личный кабинет по... |
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 |
<div class="cabinet__inputs" > @if (isset($Worker[0]->infobloks)) @if ($Worker[0]->infobloks->count()) @php $i = 1; @endphp @foreach ($Worker[0]->infobloks as $info) <div class="cabinet__inputs-item form-group"> <label class="form-group__label">{{ $info->name }}</label> <div class="form-group__item"> <div class="select"> <select class="js-select2 sertificates_js"> <option value="0">Нет</option> <option value="1" selected>Да</option> </select> </div> </div> |
e3c7b0ffb Коммит на понедел... |
421 |
</div> |
99a41e761 Личный кабинет по... |
422 423 424 425 426 427 428 |
@php $i++; @endphp @endforeach @endif @endif <div class="cabinet__inputs-item cabinet__inputs-item_fullwidth form-group"> <label class="form-group__label">Образцы дипломов и документов</label> |
e3c7b0ffb Коммит на понедел... |
429 430 |
<div class="form-group__item"> <div class="select"> |
99a41e761 Личный кабинет по... |
431 432 433 434 435 436 |
<select class="js-select2" id="documents" name="documents"> @if ($Infoblocks->count()) @foreach ($Infoblocks as $it) <option value="{{ $it->id }}">{{ $it->name }}</option> @endforeach @endif |
e3c7b0ffb Коммит на понедел... |
437 438 439 440 |
</select> </div> </div> </div> |
99a41e761 Личный кабинет по... |
441 442 443 |
<a href="{{ route('worker.add_diplom', ['worker' => $Worker[0]->id]) }}" name="btn_new_diplom" data-val="{{ $Worker[0]->id }}" id="btn_new_diplom" class="button button_light"> Добавить документ </a> |
e3c7b0ffb Коммит на понедел... |
444 445 446 447 |
</div> </div> <div class="cabinet__body-item"> <div class="cabinet__works"> |
99a41e761 Личный кабинет по... |
448 449 450 |
@if (isset($Worker[0]->place_worker)) @php $i = 1; @endphp @foreach($Worker[0]->place_worker as $company) |
e3c7b0ffb Коммит на понедел... |
451 452 453 454 |
<div class="cabinet__works-item"> <div class="cabinet__works-spoiler active"> <div class="cabinet__works-spoiler-left"> <div class="cabinet__works-spoiler-buttons"> |
a9dfa8c95 Обновление на 7 м... |
455 |
<a href="{{ route('worker.delete_document', ['doc' => $company->id]) }}" class="button button_light js-works-remove"> |
e3c7b0ffb Коммит на понедел... |
456 |
<svg> |
99a41e761 Личный кабинет по... |
457 |
<use xlink:href="{{ asset('images/sprite.svg#del') }}"></use> |
e3c7b0ffb Коммит на понедел... |
458 |
</svg> |
a9dfa8c95 Обновление на 7 м... |
459 460 |
</a> <a href="{{ route('worker.edit_document', ['doc' => $company->id, 'worker' => $Worker[0]->id]) }}" type="button" class="button button_light js-works-edit"> |
e3c7b0ffb Коммит на понедел... |
461 |
<svg> |
99a41e761 Личный кабинет по... |
462 |
<use xlink:href="{{ asset('images/sprite.svg#pencil') }}"></use> |
e3c7b0ffb Коммит на понедел... |
463 |
</svg> |
a9dfa8c95 Обновление на 7 м... |
464 |
</a> |
e3c7b0ffb Коммит на понедел... |
465 |
</div> |
99a41e761 Личный кабинет по... |
466 |
<div class="cabinet__works-spoiler-text">Место работы {{ $i }}</div> |
e3c7b0ffb Коммит на понедел... |
467 468 469 |
</div> <button type="button" class="cabinet__works-spoiler-right js-parent-toggle"> <svg> |
99a41e761 Личный кабинет по... |
470 |
<use xlink:href="{{ asset('images/sprite.svg#arrow-bold') }}"></use> |
e3c7b0ffb Коммит на понедел... |
471 472 473 474 475 476 477 478 |
</svg> </button> </div> <div class="cabinet__works-body"> <div class="cabinet__inputs"> <div class="cabinet__inputs-item form-group"> <label class="form-group__label">Должность</label> <div class="form-group__item"> |
99a41e761 Личный кабинет по... |
479 |
<input type="text" class="input" value="{{ $company->job_title }}"> |
e3c7b0ffb Коммит на понедел... |
480 481 482 483 484 |
</div> </div> <div class="cabinet__inputs-item form-group"> <label class="form-group__label">Опыт работы в танкерном флоте</label> <div class="form-group__item"> |
99a41e761 Личный кабинет по... |
485 |
<input type="text" class="input" value="@if ($company->tanker) Есть @else Нет @endif"> |
e3c7b0ffb Коммит на понедел... |
486 487 488 489 490 |
</div> </div> <div class="cabinet__inputs-item form-group"> <label class="form-group__label">Название теплохода</label> <div class="form-group__item"> |
99a41e761 Личный кабинет по... |
491 |
<input type="text" class="input" value="{{ $company->teplohod }}"> |
e3c7b0ffb Коммит на понедел... |
492 493 494 495 496 |
</div> </div> <div class="cabinet__inputs-item form-group"> <label class="form-group__label">Тип (GWT)</label> <div class="form-group__item"> |
99a41e761 Личный кабинет по... |
497 |
<input type="text" class="input" value="{{ $company->GWT }}"> |
e3c7b0ffb Коммит на понедел... |
498 499 500 501 502 |
</div> </div> <div class="cabinet__inputs-item form-group"> <label class="form-group__label">ГД (кВТ)</label> <div class="form-group__item"> |
99a41e761 Личный кабинет по... |
503 |
<input type="text" class="input" value="{{ $company->KBT }}"> |
e3c7b0ffb Коммит на понедел... |
504 505 506 507 508 |
</div> </div> <div class="cabinet__inputs-item form-group"> <label class="form-group__label">Начало контракта</label> <div class="form-group__item"> |
99a41e761 Личный кабинет по... |
509 |
<input type="text" class="input" value="{{ $company->begin_work }}"> |
e3c7b0ffb Коммит на понедел... |
510 511 512 513 514 |
</div> </div> <div class="cabinet__inputs-item form-group"> <label class="form-group__label">Окончание контракта</label> <div class="form-group__item"> |
99a41e761 Личный кабинет по... |
515 |
<input type="text" class="input" value="{{ $company->end_work }}"> |
e3c7b0ffb Коммит на понедел... |
516 517 518 519 520 |
</div> </div> <div class="cabinet__inputs-item form-group"> <label class="form-group__label">Название компании</label> <div class="form-group__item"> |
99a41e761 Личный кабинет по... |
521 |
<input type="text" class="input" value="{{ $company->name_company }}"> |
e3c7b0ffb Коммит на понедел... |
522 523 524 525 526 |
</div> </div> </div> </div> </div> |
99a41e761 Личный кабинет по... |
527 528 529 |
@php $i++ @endphp @endforeach @endif |
a9dfa8c95 Обновление на 7 м... |
530 |
<!--<div class="cabinet__works-item"> |
e3c7b0ffb Коммит на понедел... |
531 532 |
<div class="cabinet__works-spoiler"> <div class="cabinet__works-spoiler-left"> |
99a41e761 Личный кабинет по... |
533 |
<div class="cabinet__works-spoiler-text">Новая работа</div> |
e3c7b0ffb Коммит на понедел... |
534 535 536 |
</div> <button type="button" class="cabinet__works-spoiler-right js-parent-toggle"> <svg> |
99a41e761 Личный кабинет по... |
537 |
<use xlink:href="{{ asset('images/sprite.svg#arrow-bold') }}"></use> |
e3c7b0ffb Коммит на понедел... |
538 539 540 541 542 543 544 545 |
</svg> </button> </div> <div class="cabinet__works-body"> <div class="cabinet__inputs"> <div class="cabinet__inputs-item form-group"> <label class="form-group__label">Должность</label> <div class="form-group__item"> |
99a41e761 Личный кабинет по... |
546 |
<input type="text" name="new_job_title" id="new_job_title" class="input" value="Не указано"> |
e3c7b0ffb Коммит на понедел... |
547 548 549 550 551 |
</div> </div> <div class="cabinet__inputs-item form-group"> <label class="form-group__label">Опыт работы в танкерном флоте</label> <div class="form-group__item"> |
99a41e761 Личный кабинет по... |
552 553 554 555 |
<select class="js-select2" name="new_job_title" id="new_job_title"> <option value="0">Нет</option> <option value="1">Да</option> </select> |
e3c7b0ffb Коммит на понедел... |
556 557 558 559 560 |
</div> </div> <div class="cabinet__inputs-item form-group"> <label class="form-group__label">Название теплохода</label> <div class="form-group__item"> |
99a41e761 Личный кабинет по... |
561 |
<input type="text" name="new_teplohod" id="new_teplohod" class="input" value="Не указано"> |
e3c7b0ffb Коммит на понедел... |
562 563 564 565 566 |
</div> </div> <div class="cabinet__inputs-item form-group"> <label class="form-group__label">Тип (GWT)</label> <div class="form-group__item"> |
99a41e761 Личный кабинет по... |
567 |
<input type="text" name="new_GWT" id="new_GWT" class="input" value="Не указано"> |
e3c7b0ffb Коммит на понедел... |
568 569 570 571 572 |
</div> </div> <div class="cabinet__inputs-item form-group"> <label class="form-group__label">ГД (кВТ)</label> <div class="form-group__item"> |
99a41e761 Личный кабинет по... |
573 |
<input type="text" name="new_KBT" id="new_KBT" class="input" value="Не указано"> |
e3c7b0ffb Коммит на понедел... |
574 575 576 577 578 |
</div> </div> <div class="cabinet__inputs-item form-group"> <label class="form-group__label">Начало контракта</label> <div class="form-group__item"> |
99a41e761 Личный кабинет по... |
579 |
<input type="text" name="new_Begin_work" id="new_Begin_work" class="input" value="Не указано"> |
e3c7b0ffb Коммит на понедел... |
580 581 582 583 584 |
</div> </div> <div class="cabinet__inputs-item form-group"> <label class="form-group__label">Окончание контракта</label> <div class="form-group__item"> |
99a41e761 Личный кабинет по... |
585 |
<input type="text" name="new_End_work" id="new_End_work" class="input" value="Не указано"> |
e3c7b0ffb Коммит на понедел... |
586 587 588 589 590 |
</div> </div> <div class="cabinet__inputs-item form-group"> <label class="form-group__label">Название компании</label> <div class="form-group__item"> |
99a41e761 Личный кабинет по... |
591 |
<input type="text" name="new_name_company" id="new_name_company" class="input" value="Не указано"> |
e3c7b0ffb Коммит на понедел... |
592 593 594 595 |
</div> </div> </div> </div> |
a9dfa8c95 Обновление на 7 м... |
596 597 |
</div>--> <a href="{{ route('worker.add_document', ['worker' => $Worker[0]->id]) }}" id="new_work" name="new_work" class="button button_light cabinet__works-add">Новое место работы</a> |
e3c7b0ffb Коммит на понедел... |
598 599 |
</div> </div> |
99a41e761 Личный кабинет по... |
600 |
|
e3c7b0ffb Коммит на понедел... |
601 602 |
<div class="cabinet__body-item"> <h4 class="cabinet__h4">О себе</h4> |
99a41e761 Личный кабинет по... |
603 |
<textarea class="textarea" name="text" id="text" placeholder="Не указано">{{ $Worker[0]->text }}</textarea> |
e3c7b0ffb Коммит на понедел... |
604 605 606 607 |
<div class="cabinet__buttons"> <button type="submit" class="button">Сохранить</button> <label class="file"> <span class="file__input"> |
99a41e761 Личный кабинет по... |
608 609 |
<input type="file" name="file" id="file"> <span class="button button_light">@if (empty($Worker[0]->file)) Прикрепить резюме @else {{ $Worker[0]->file }}@endif</span> |
e3c7b0ffb Коммит на понедел... |
610 611 612 613 614 615 616 617 618 619 620 |
</span> </label> </div> </div> </form> </div> </div> </section> </div> <div> @endsection |