How to increase Max file upload size?

I am trying set file upload size limit to 800M.
 FileUpload::make('download_url')
                          ->disk('public')
                          ->directory('videos')
                          ->label('Video File')
                          ->maxSize(819200) // 800 MB in KB
                          ->preserveFilenames();

But I am unable to upload a 750M file.
I am getting following error.
The mountedTableActionsData.0.download_url.d1b511bb-4c36-4261-8ea3-9389841af147 field must not be greater than 200000 kilobytes.
Please suggest.
Was this page helpful?