Blame view
resources/views/admin/profile.blade.php
16.4 KB
7c1e05248 Формы настройки с... |
1 2 3 4 5 6 7 |
@extends('layout.admin', ['title' => 'Админка - Профиль']) @section('content') <h4 class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300"> Личные данные </h4> <form method="POST" action=""> |
c84db5243 Форма редактирова... |
8 |
@csrf |
7c1e05248 Формы настройки с... |
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
<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" |
c84db5243 Форма редактирова... |
27 |
placeholder="Почта" value="{{ old('email') ?? $user->email ?? '' }}" |
7c1e05248 Формы настройки с... |
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 111 112 113 114 115 116 117 118 119 120 |
/> @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> <div class="mt-4 text-sm"> <span class="text-gray-700 dark:text-gray-400"> Тип пользователя </span> <div class="mt-2"> <label class="inline-flex items-center text-gray-600 dark:text-gray-400"> <input type="radio" class="text-purple-600 form-radio focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray" name="is_worker" value="1" <? if ($user->is_worker == 1) echo "checked"; ?> /> <span class="ml-2">Работник</span> </label> <label class="inline-flex items-center ml-6 text-gray-600 dark:text-gray-400"> <input type="radio" class="text-purple-600 form-radio focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray" name="is_worker" value="0" <? if ($user->is_worker == 0) echo "checked"; ?> /> <span class="ml-2">Работодатель</span> </label> </div> </div><br> <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> |
32cbe7736 Обновление блейдо... |
121 122 123 |
<a href="{{ route('admin.password') }}" 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;"> Сменить пароль |
7c1e05248 Формы настройки с... |
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 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 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 |
</a> </div> </div> </div> </form> <!-- <label class="block mt-4 text-sm"> <span class="text-gray-700 dark:text-gray-400"> Requested Limit </span> <select class="block w-full mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 form-select focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray" > <option>$1,000</option> <option>$5,000</option> <option>$10,000</option> <option>$25,000</option> </select> </label> <label class="block mt-4 text-sm"> <span class="text-gray-700 dark:text-gray-400"> Multiselect </span> <select class="block w-full mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 form-multiselect focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray" multiple > <option>Option 1</option> <option>Option 2</option> <option>Option 3</option> <option>Option 4</option> <option>Option 5</option> </select> </label> <label class="block mt-4 text-sm"> <span class="text-gray-700 dark:text-gray-400">Message</span> <textarea 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="Enter some long form content." ></textarea> </label> <div class="flex mt-6 text-sm"> <label class="flex items-center dark:text-gray-400"> <input type="checkbox" class="text-purple-600 form-checkbox focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray" /> <span class="ml-2"> I agree to the <span class="underline">privacy policy</span> </span> </label> </div> </div> <!-- Validation inputs --> <!--<h4 class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300" > Validation </h4> <div class="px-4 py-3 mb-8 bg-white rounded-lg shadow-md dark:bg-gray-800" > <!-- Invalid input --> <!--<label class="block text-sm"> <span class="text-gray-700 dark:text-gray-400"> Invalid input </span> <input class="block w-full mt-1 text-sm border-red-600 dark:text-gray-300 dark:bg-gray-700 focus:border-red-400 focus:outline-none focus:shadow-outline-red form-input" placeholder="Jane Doe" /> <span class="text-xs text-red-600 dark:text-red-400"> Your password is too short. </span> </label> <!-- Valid input --> <!--<label class="block mt-4 text-sm"> <span class="text-gray-700 dark:text-gray-400"> Valid input </span> <input class="block w-full mt-1 text-sm border-green-600 dark:text-gray-300 dark:bg-gray-700 focus:border-green-400 focus:outline-none focus:shadow-outline-green form-input" placeholder="Jane Doe" /> <span class="text-xs text-green-600 dark:text-green-400"> Your password is strong. </span> </label> <!-- Helper text --> <!--<label class="block mt-4 text-sm"> <span class="text-gray-700 dark:text-gray-400"> Helper text </span> <input class="block w-full mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray form-input" placeholder="Jane Doe" /> <span class="text-xs text-gray-600 dark:text-gray-400"> Your password must be at least 6 characters long. </span> </label> </div> <!-- Inputs with icons --> <!--<h4 class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300" > Icons </h4> <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">Icon left</span> <!-- focus-within sets the color for the icon when input is focused --> <!--<div class="relative text-gray-500 focus-within:text-purple-600 dark:focus-within:text-purple-400" > <input class="block w-full pl-10 mt-1 text-sm text-black dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray form-input" placeholder="Jane Doe" /> <div class="absolute inset-y-0 flex items-center ml-3 pointer-events-none" > <svg class="w-5 h-5" aria-hidden="true" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" stroke="currentColor" > <path d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" ></path> </svg> </div> </div> </label> <label class="block mt-4 text-sm"> <span class="text-gray-700 dark:text-gray-400">Icon right</span> <!-- focus-within sets the color for the icon when input is focused --> <!--<div class="relative text-gray-500 focus-within:text-purple-600 dark:focus-within:text-purple-400" > <input class="block w-full pr-10 mt-1 text-sm text-black dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray form-input" placeholder="Jane Doe" /> <div class="absolute inset-y-0 right-0 flex items-center mr-3 pointer-events-none" > <svg class="w-5 h-5" aria-hidden="true" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" stroke="currentColor" > <path d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" ></path> </svg> </div> </div> </label> </div> <!-- Inputs with buttons --> <!--<h4 class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300" > Buttons </h4> <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"> Button left </span> <div class="relative"> <input class="block w-full pl-20 mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray form-input" placeholder="Jane Doe" /> <button class="absolute inset-y-0 px-4 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-l-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray" > Click </button> </div> </label> <label class="block mt-4 text-sm"> <span class="text-gray-700 dark:text-gray-400"> Button right </span> <div class="relative text-gray-500 focus-within:text-purple-600" > <input class="block w-full pr-20 mt-1 text-sm text-black dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray form-input" placeholder="Jane Doe" /> <button class="absolute inset-y-0 right-0 px-4 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-r-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple" > Click </button> </div> </label> </div>--> @endsection |