php - How can I show error when file upload exceeds max upload limit? - Laravel

one text

Solution:

Add this validation rule to the validation array - file|max:85000

 $request->validate([
        'title' => 'required|unique:videos|max:55',
        'desc' => 'required|max:255',
        'video' => 'required|file|max:85000'
    ]);

Source