## Editor Field

This will create a new wysiwyg form field

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 "editor" (Mandatory) 
multiLanguage | boolean | If the field is multi language. Default is false
preValidation | string | Filters to apply on the submitted field value separated by pipes. Please refer to https://github.com/Waavi/Sanitizer to see available filters. To those ones the EAE Base CMS also has xss_clean. (ex: <code>trim&#124;xss_clean</code>). Do not use strip tags here since it will clean all the html
validation | string | Indicates the validation rules. Please see https://laravel.com/docs/5.8/validation#available-validation-rules to view available rules. Do not use the max rule here. Use htmlMax instead. This works like the max <code>required&#124;htmlMax:1000</code>  
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 
disabled | boolean | If it is true the field will be disabled for editing. Default false
info | string | Help text that shows up next to text form field 

The field on the database table should be MEDIUMTEXT.
