how do i upload a file to pastebin if ($request->file('avatar')) { $image = $request->file('avatar'); $imageName = $image->getClientOriginalName(); $input['avatar'] = $imageName; $destinationPath = 'avatar'; $request->file('avatar')->move($destinationPath, $imageName); how do i upload a file to pastebin How to get it? how do i upload a file to pastebin } else { $input['avatar'] = 'default.png'; } how do i upload a file to pastebin