Since im using inertia i expect that every error that i receive is returned with redirect()->back()-withErrors([errors]), so i can properly handle those errors in props / computed properties and show them in form as validation issue or as page notification for policy issues etc. When i upload file for some reason i can’t catch it. My post request is not even reaching my controller function. It seems that when a request exceeds post_max_size, PHP stops processing immediately and does not pass the request to Laravel. If this is true, how can i handle such errors?
When i submit post to server with too large file im getting modal:
How do you guys fix this problem and handle this issues?
Vue code for sending post request:
const form = useForm({
document: null,
currency_id: null,
});
const updateFile = (document) => {
form.document = document;
};
const uploadFile = () => {
form.submit('post', route('instructions.store'), {
onSuccess: () => addDocumentModal.value.closeModal(),
onError: (errors) => console.error(errors),
});
};