Blame view

resources/views/admin/employer/comment.blade.php 1.72 KB
50aa60b60   Андрей Ларионов   Работодатели лого...
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
  @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>
      <div class="px-4 py-3 mb-8 bg-white rounded-lg shadow-md dark:bg-gray-800">
                 <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="Комментарий админа"
                          >{{ $employer->comment_admin }}</textarea>
                 </label>
  
              <br>
              <div class="flex flex-col flex-wrap mb-4 space-y-4 md:flex-row md:items-end md:space-x-4">
                  <div>
  
                      <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>
  
                  </div>
              </div>
      </div>
  @endsection