form.blade.php 8.13 KB
@csrf

@isset($education)
    @method('PUT')
@endisset

<div class="px-4 py-3 mb-8 bg-white rounded-lg shadow-md dark:bg-gray-800">
    <form method="POST" action="{{ route('admin.education.update', ['education' => $education->id]) }}" enctype="multipart/form-data">
    <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') ?? $education->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="address" id="address"
               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('address') ?? $education->address ?? '' }}"
        />
        @error('address')
        <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="Email" value="{{ old('email') ?? $education->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') ?? $education->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>
        <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="text" placeholder="Текст (html)" required
                  rows="10">{{ old('text') ?? $education->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 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($education->image)
            <img src="{{asset(Storage::url($education->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>
            <a href="{{ route('admin.education.index') }}"
               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>
    </form>

    @isset($education)
        <hr>
        <form method="GET" action="{{ route('admin.add-program-education') }}">
            <label class="block text-sm">
                <span class="text-gray-700 dark:text-gray-400">Категория образования</span>
                <input type="hidden" name="id" value="{{ $education->id }}"/>
                <input name="level" id="level"
                       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=""
                /><br>
                <button type="submit" id="btn_education" name="btn_education" 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>
            </label><br>
        </form>
        <hr>
        @if ($program->count())
            @php $bool = true;
                 $i = 1;
                 $level = "";
            @endphp

            @foreach ($program as $pro)
             @if ((!empty($level)) && ($level <> $pro->level ))
                </div>
                </div><br>
                @php $bool = true; $i++; @endphp
             @endif
             @if ($bool == true)
                <div class="tabs">
                    <input type="radio" name="tab-btn" id="tab-btn-{{$i}}" value="" checked>
                    <label for="tab-btn-{{$i}}">{{ $pro->level }}</label>
                    <div id="content-{{$i}}">

                @php $bool = false;
                     $level = $pro->level;
                @endphp
             @endif
                <label class="block text-sm">
                    <h4 class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300">Специальность: {{$pro->name}}</h4>
                    <span class="text-gray-700 dark:text-gray-400">Описание: {{$pro->text}}</span>
                    <a href="{{ route('admin.delete-program-education', ['program' => $pro->id, 'education' => $education->id]) }}">Удалить</a>
                </label><br><hr>
             @endforeach
                    </div>
                </div><br>
        @else
             <span class="text-gray-700 dark:text-gray-400">Нет записей</span>
        @endif
    @endisset

</div>
<script src="//cdn.ckeditor.com/4.14.0/standard/ckeditor.js"></script>

<!--<script src="{{ asset('/ckeditor/ckeditor.js') }}"></script>-->
<script>
    CKEDITOR.replace( 'text', {
        filebrowserUploadUrl: "{{route('ckeditor.image-upload', ['_token' => csrf_token() ])}}",
        filebrowserImageUploadUrl: "{{ route('ckeditor.image-upload', ['_token' => csrf_token() ])}}",
        filebrowserUploadMethod: 'form'
    });
</script>