Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 388 Bytes

form-custom.md

File metadata and controls

14 lines (11 loc) · 388 Bytes

Custom Form Type

You might create your own html input type by using custom type

Code Sample

$custom_element = view('custom_element')->render();
$this->form[] = ["label"=>"Label Name","name"=>"custom_field","type"=>"custom","html"=>$custom_element];

What's Next

Table Of Contents