program.blade.php 2.95 KB
@extends('layout.admin', ['title' => 'Админка - Образование - добавление программы обучения'])

@section('content')
    <form method="POST" action="{{ route('admin.store-program-education') }}">
        @csrf

        <div class="px-4 py-3 mb-8 bg-white rounded-lg shadow-md dark:bg-gray-800">
            <input type="hidden" id="education_id" name="education_id" value="{{ $id_education }}"/>
            <input type="hidden" id="level" name="level" value="{{ $level }}"/>

            <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="Название специализации" required value="{{ old('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>
                <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') ?? '' }}</textarea>
                @error('text')
                <span class="text-xs text-red-600 dark:text-red-400">
                  {{ $message }}
                </span>
                @enderror
            </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.edit', ['education' => $id_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"
                       style="display: -webkit-inline-box; height: 30px!important;"
                    >Назад</a>
                </div>
            </div>
        </div>
    </form>

@endsection