{{ form_label(form.title) }}
{{ form_widget(form.title, {
attr: {
class: 'w-full bg-white border border-black rounded px-4 py-2'
}
}) }}
{{ form_errors(form.title) }}
{{ form_label(form.content) }}
{{ form_widget(form.content, {
attr: {
class: 'tinymce w-full bg-white border border-black rounded px-4 py-2',
rows: 20
}
}) }}
{{ form_errors(form.content) }}
{{ form_row(form.status) }}