Blame view
resources/views/modals/vacancy/delete_vacancy.blade.php
647 Bytes
664449023 Employer personal... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<form action="{{ route('employer.vacancy_delete', ['ad_employer' => $vacancyId]) }}" id="{{ $modalId }}" class="modal modal_bg" style="display: none;"> @csrf <div class="modal__body"> <div class="modal__title">Удалить вакансию?</div> <div class="modal__text">Вы уверены, что хотите удалить вакансию {{ $vacancyName }}?</div> <div class="modal__buttons"> <button type="submit" class="button">Да</button> <button type="button" class="button button_light" data-fancybox-close>Нет</button> </div> </div> </form> |