Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 660 Bytes

form-upload.md

File metadata and controls

24 lines (19 loc) · 660 Bytes

Upload Form Input Type

Showing an upload input type

Code Sample

$this->form[] = ['label'=>'Document','name'=>'document','type'=>'upload','upload_encrypt'=>false];

Upload With Image Validation

$this->form[] = ['label'=>'Document','name'=>'document','type'=>'upload','validation'=>'image'];

Upload With Image Validation and Size Validation

//Validate the image and limit the size to 1000 KB
$this->form[] = ['label'=>'Document','name'=>'document','type'=>'upload','validation'=>'image|max:1000'];

What's Next

Table Of Contents