I've completed a tutorial to upload image files. How can I validate file uploads in the view when a user uploads a file larger than 2MB?
create.blade.php
@if (count($errors) > 0)
<div class="alert alert-danger">
<strong>Whoops!</strong> Errors.<br><br>
<ul>
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
</div>
@endif
@if(session('success'))
<div class="alert alert-success">
{{ session('success') }}
</div>
@endif
<div class="form-group">
<input type="file" name="photos[]" multiple aria-describedby="fileHelp"/>
<small id="fileHelp" class="form-text text-muted">jpeg, png, bmp - 2MB.</small>
</div>
Rules
public function rules()
{
$rules = [
'header' => 'required|max:255',
'description' => 'required',
'date' => 'required',
];
$photos = $this->input('photos');
foreach (range(0, $photos) as $index) {
$rules['photos.' . $index] = 'image|mimes:jpeg,bmp,png|max:2000';
}
return $rules;
}
Everything is ok, however when I try to upload a file which is larger than 2MB it gives me an error:
Illuminate \ Http \ Exceptions \ PostTooLargeException No message
How can I solve this and secure this exception?
in laravel you can not handle this case in controller as it will not get to controller/customrequest and will be handled in middleware so you can handle this in ValidatePostSize.php file:
with your custom message
Or in App\Exceptions\Handler:
Else need to update php.ini
If you dont to work with any of above solutions you can use client side validation like if you are using jQuery e.g.:
or