$request->file('image')->getSize()
request()->validate([ 'image' => 'image|mimes:jpeg,png,jpg|max:2048', ]);
$image = getimagesize($request->image); $width = $image[0]; $height = $image[1];