{% extends 'base.html.twig' %} {% block body %}
{% include 'admin/_components/header.html.twig' %} {% include 'admin/_components/sidebar.html.twig' %}
{{ form_start(form, { attr: { 'data-turbo': 'true' } }) }}
Course information
{{ form_label(form.title, 'Course title'|raw) }} {{ form_widget(form.title) }}
{{ form_label(form.price, 'Course Price') }} {{ form_widget(form.price, {'attr': {'class': 'form-control', 'placeholder': 'Add a Price'}}) }}
{{ form_label(form.discount, 'Price Promo') }} {{ form_widget(form.discount, {'attr': {'class': 'form-control', 'placeholder': 'Add a title'}}) }}
{{ form_label(form.presentationVideoUrl, 'Course Presentation Video') }} {{ form_widget(form.presentationVideoUrl, {'attr': {'class': 'form-control', 'placeholder': 'Enter Vimeo video ID'}}) }} Example: https://player.vimeo.com/video/00000000?h=111111 {{ form_errors(form.presentationVideoUrl) }}
{{ form_label(form.language, 'Language') }} {{ form_widget(form.language, {'attr': {'class': 'form-control', 'placeholder': 'Select a language'}}) }}
{{ form_label(form.level, 'Level') }} {{ form_widget(form.level, {'attr': {'class': 'form-control', 'placeholder': 'Select a level'}}) }}
{{ form_label(form.category, 'Category') }} {{ form_widget(form.category, {'attr': {'class': 'form-control', 'placeholder': 'Select a Category'}}) }}
{{ form_label(form.subCategory, 'Subcategory') }} {{ form_widget(form.subCategory, {'attr': {'class': 'form-control', 'placeholder': 'Select a Subcategory'}}) }}
{{ form_label(form.image, 'Featured Image') }} {{ form_widget(form.image, {'attr': {'class': 'form-control', 'placeholder': 'Add a URL'}}) }}
{{ form_widget(form.description, {'attr': {'class': 'editor'}}) }}
{{ form_widget(form.whatYouWillLearn, {'attr': {'class': 'editor'}}) }}
{{ form_widget(form.requirement, {'attr': {'class': 'editor'}}) }}
{{ form_widget(form.chapters) }}
{{ form_end(form) }}
back to list {% endblock %}