//Use File On top
use IlluminateSupportFacadesFile;
//then use the delete function
File::delete('abc/muhammad.jpg');
//location of file to delete is "public/abc/muhammad.jpg"
// import Storage class
use IlluminateSupportFacadesStorage;
Storage::disk('public')->delete('path-of-file');
$request->file('image')->move(public_path() . 'users/' . $user->id . '.jpg');
// or
$request->file('image')->move(public_path('users/' . $user->id . '.jpg'));