## Section Field

This will create a new form field of type section

Property | Type | Description
-------- | ---- | -----------
name | string  | Must match the field name on the database (Mandatory)
label | string | It's the field display label the user will see (Mandatory)
type | string | Defines what is the field type. For this field it is "section" (Mandatory)
state | string | Must be "open" or "close" depending if it opens or closes the section (Mandatory)
placement | string | Where does the field appear in the form. Possible values are _main_ or _sidebar_. Default value is _main_
parent | array&#124;boolean | Indicates if the field is dependent on a "parent field" value. Default is false if it doesn't have a field <br><br>`["name" => "type","values" => ["value1","value2"]]`<br><br>With the example above this field would only show up when the "type" field had the "value1" or "value2" selected 

This field is simply visible and doesn't not save in the database.
