diff --git a/app/Resources/views/blog/_comment_form.html.twig b/app/Resources/views/blog/_comment_form.html.twig
index 0f010a8aa..ee8764e1f 100644
--- a/app/Resources/views/blog/_comment_form.html.twig
+++ b/app/Resources/views/blog/_comment_form.html.twig
@@ -3,10 +3,10 @@
test the server-side validation errors from the browser. To temporarily
disable this validation, add the 'novalidate' attribute:
- {{ form_start(form, { method: ..., action: ..., attr: { novalidate: 'novalidate' } }) }}
+ {{ form_start(form, {method: ..., action: ..., attr: {novalidate: 'novalidate'}}) }}
#}
-{{ form_start(form, { method: 'POST', action: path('comment_new', { 'postSlug': post.slug }) }) }}
+{{ form_start(form, {method: 'POST', action: path('comment_new', {'postSlug': post.slug})}) }}
{# instead of displaying form fields one by one, you can also display them
all with their default options and styles just by calling to this function:
@@ -20,12 +20,12 @@
{{ form_errors(form) }}
- {{ form_label(form.content, 'label.content', { label_attr: { class: 'hidden' }}) }}
+ {{ form_label(form.content, 'label.content', {label_attr: {class: 'hidden'}}) }}
{# Render any errors for the "content" field (e.g. when a class property constraint failed) #}
{{ form_errors(form.content) }}
- {{ form_widget(form.content, { attr: { rows: 10 } }) }}
+ {{ form_widget(form.content, {attr: {rows: 10}}) }}
diff --git a/app/Resources/views/blog/index.html.twig b/app/Resources/views/blog/index.html.twig
index 10553e1f9..f3ab6e1d7 100644
--- a/app/Resources/views/blog/index.html.twig
+++ b/app/Resources/views/blog/index.html.twig
@@ -6,7 +6,7 @@
{% for post in posts %}