Blame view
resources/views/admin/reclames/form.blade.php
4.67 KB
dd87a3ce4 Реклама-блок, обн... |
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 87 88 89 90 91 92 93 94 95 96 97 98 |
@csrf @isset($reclame) @method('PUT') @endisset <script src="//cdn.ckeditor.com/4.14.0/standard/ckeditor.js"></script> <script> CKEDITOR.replace( 'text', { filebrowserUploadUrl: "{{route('ckeditor.image-upload', ['_token' => csrf_token() ])}}", filebrowserUploadMethod: 'form' }); </script> <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="title" id="title" 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('title') ?? $reclame->title ?? '' }}" /> @error('title') <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"> <input type="hidden" name="is_hidden" value="0" /> <input type="checkbox" value="1" name="is_hidden" id="is_hidden" {{ ($reclame->is_hidden) ? "checked" : "" }} /> Скрыть рекламу</span> </label><br> <label class="block text-sm"> <span class="text-gray-700 dark:text-gray-400">Ссылка</span> <input name="link" id="link" 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('link') ?? $reclame->link ?? '' }}" /> @error('link') <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> <textarea class="form-control ckeditor" name="text" id="text" placeholder="Текст (html)" required rows="10">{{ old('text') ?? $reclame->text ?? '' }}</textarea> @error('text') <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="position" id="position" 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('position') ?? $reclame->position ?? '' }}" /> @error('position') <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 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($reclame->image) <img src="{{asset(Storage::url($reclame->image))}}" width="100px"/> @endisset </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> <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> </div> </div> </div> |