Blame view
resources/views/admin/pages/form.blade.php
7.06 KB
486a3601d Должности и работ... |
1 2 3 4 5 |
@csrf @isset($page) @method('PUT') @endisset |
5b2dcf44b Редактор страниц ... |
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 |
<script> function translit(word){ var answer = ''; var converter = { 'а': 'a', 'б': 'b', 'в': 'v', 'г': 'g', 'д': 'd', 'е': 'e', 'ё': 'e', 'ж': 'zh', 'з': 'z', 'и': 'i', 'й': 'y', 'к': 'k', 'л': 'l', 'м': 'm', 'н': 'n', 'о': 'o', 'п': 'p', 'р': 'r', 'с': 's', 'т': 't', 'у': 'u', 'ф': 'f', 'х': 'h', 'ц': 'c', 'ч': 'ch', 'ш': 'sh', 'щ': 'sch', 'ь': '', 'ы': 'y', 'ъ': '', 'э': 'e', 'ю': 'yu', 'я': 'ya', 'А': 'A', 'Б': 'B', 'В': 'V', 'Г': 'G', 'Д': 'D', 'Е': 'E', 'Ё': 'E', 'Ж': 'Zh', 'З': 'Z', 'И': 'I', 'Й': 'Y', 'К': 'K', 'Л': 'L', 'М': 'M', 'Н': 'N', 'О': 'O', 'П': 'P', 'Р': 'R', 'С': 'S', 'Т': 'T', 'У': 'U', 'Ф': 'F', 'Х': 'H', 'Ц': 'C', 'Ч': 'Ch', 'Ш': 'Sh', 'Щ': 'Sch', 'Ь': '', 'Ы': 'Y', 'Ъ': '', 'Э': 'E', 'Ю': 'Yu', 'Я': 'Ya', ' ': '-' }; for (var i = 0; i < word.length; ++i ) { if (converter[word[i]] == undefined){ answer += word[i]; } else { answer += converter[word[i]]; } } return answer; } window.addEventListener("DOMContentLoaded", (event) => { let title = document.querySelector('#name'); let text = document.querySelector('#slug'); title.addEventListener('input', function() { text.value = translit(this.value); }); }); </script> |
486a3601d Должности и работ... |
48 |
<div class="px-4 py-3 mb-8 bg-white rounded-lg shadow-md dark:bg-gray-800"> |
486a3601d Должности и работ... |
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 |
<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') ?? $page->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">Английский псевдоним страницы</span> <input name="slug" id="slug" 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('slug') ?? $page->slug ?? '' }}" /> @error('slug') <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> |
96681864e Справочник образо... |
77 |
<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 ckeditor" name="anons" placeholder="Анонс (html)" required |
486a3601d Должности и работ... |
78 79 80 81 82 83 84 85 86 87 |
rows="10">{{ old('anons') ?? $page->anons ?? '' }}</textarea> @error('anons') <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> |
330dc3881 Коммит обновление... |
88 89 90 |
<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 ckeditor" name="text2" placeholder="Текст (html)" required rows="10">{{ old('text2') ?? $page->text2 ?? '' }}</textarea> @error('text2') |
486a3601d Должности и работ... |
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
<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="author" id="author" 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('author') ?? $page->author ?? '' }}" /> @error('author') <span class="text-xs text-red-600 dark:text-red-400"> {{ $message }} </span> @enderror </label><br> <label class="block text-sm"> |
5b2dcf44b Редактор страниц ... |
111 |
<span class="text-gray-700 dark:text-gray-400">Картинка</span> |
dd87a3ce4 Реклама-блок, обн... |
112 113 114 115 116 117 118 119 120 121 122 123 |
<input type="file" 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" id="image" name="image" accept="image/png, image/jpeg"> @error('image') <span class="text-xs text-red-600 dark:text-red-400"> {{ $message }} </span> @enderror @isset($page->image) <img src="{{asset(Storage::url($page->image))}}" width="100px"/> @endisset |
5b2dcf44b Редактор страниц ... |
124 |
</label><br> |
486a3601d Должности и работ... |
125 126 127 128 129 130 |
<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 Обновление блейдо... |
131 132 133 134 |
<a href="{{ route('admin.editor-pages') }}" 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> |
486a3601d Должности и работ... |
135 136 137 |
</div> </div> </div> |
dd87a3ce4 Реклама-блок, обн... |
138 139 140 |
<script src="//cdn.ckeditor.com/4.14.0/standard/ckeditor.js"></script> <script> CKEDITOR.replace( 'anons'); |
330dc3881 Коммит обновление... |
141 |
CKEDITOR.replace( 'text2', { |
dd87a3ce4 Реклама-блок, обн... |
142 143 144 145 146 |
filebrowserUploadUrl: "{{route('ckeditor.image-upload', ['_token' => csrf_token() ])}}", filebrowserImageUploadUrl: "{{ route('ckeditor.image-upload', ['_token' => csrf_token() ])}}", filebrowserUploadMethod: 'form' }); </script> |