From 615bde679102e9a0f7a21eedaca197ef5b28cbbf Mon Sep 17 00:00:00 2001 From: totoprayogo1916 Date: Mon, 28 Dec 2020 18:42:57 +0700 Subject: [PATCH] fix codeblock --- user_guide_src/source/helpers/form_helper.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/user_guide_src/source/helpers/form_helper.rst b/user_guide_src/source/helpers/form_helper.rst index 0a6584c89816..071d555a20d0 100644 --- a/user_guide_src/source/helpers/form_helper.rst +++ b/user_guide_src/source/helpers/form_helper.rst @@ -100,14 +100,14 @@ The following functions are available:
- If CSRF filter is turned on `form_open()` will generate CSRF field at the beginning of the form. You can specify ID of this field by passing csrf_id as one of the $attribute array: + If CSRF filter is turned on `form_open()` will generate CSRF field at the beginning of the form. You can specify ID of this field by passing csrf_id as one of the ``$attribute`` array:: form_open('/u/sign-up', ['csrf_id' => 'my-id']); - will return: + will return:: - + **Adding Hidden Input Fields**