Blame view

resources/views/admin/users/profile.blade.php 6.29 KB
c84db5243   Андрей Ларионов   Форма редактирова...
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
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
  @extends('layout.admin', ['title' => 'Админка - Профиль '.$user->name])
  
  @section('content')
      <h4 class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300">
          Личные данные пользователя "{{$user->name}} ({{$user->id}})"
      </h4>
      <form method="POST" action="">
          @csrf
          <div class="px-4 py-3 mb-8 bg-white rounded-lg shadow-md dark:bg-gray-800">
              <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"
                         placeholder="Псевдоним для админки" value="{{ old('name') ?? $user->name ?? '' }}"
                  />
                  @error('name')
                  <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">Email</span>
                  <input name="email" id="email"
                         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') ?? $user->email ?? '' }}"
                  />
                  @error('email')
                  <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="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') ?? $user->telephone ?? '' }}"
                  />
                  @error('telephone')
                  <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="surname" id="surname"
                         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('surname') ?? $user->surname ?? '' }}"
                  />
                  @error('surname')
                  <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="name_man" id="name_man"
                         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('name_man') ?? $user->name_man ?? '' }}"
                  />
                  @error('name_man')
                  <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="surname2" id="surname2"
                         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('surname2') ?? $user->surname2 ?? '' }}"
                  />
                  @error('surname2')
                  <span class="text-xs text-red-600 dark:text-red-400">
                    {{ $message }}
              </span>
                  @enderror
              </label><br>
c84db5243   Андрей Ларионов   Форма редактирова...
87
88
89
90
91
              <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>
3e44ec515   Андрей Ларионов   Настройки форм со...
92
                      <!--<a href="{{ route('admin.users') }}"
32cbe7736   Андрей Ларионов   Обновление блейдо...
93
94
                         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;"
3e44ec515   Андрей Ларионов   Настройки форм со...
95
                      >Назад</a>-->
c84db5243   Андрей Ларионов   Форма редактирова...
96
                      @if ($visible==true)
32cbe7736   Андрей Ларионов   Обновление блейдо...
97
98
99
100
101
                          <a href="{{$link}}"
                             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;">
                              {{ $caption }}
                          </a>
c84db5243   Андрей Ларионов   Форма редактирова...
102
103
104
105
106
107
                      @endif
                  </div>
              </div>
          </div>
      </form>
  @endsection