diff --git a/app/Http/Controllers/UserController.php b/app/Http/Controllers/UserController.php index 46d3e13177..94d506ef87 100644 --- a/app/Http/Controllers/UserController.php +++ b/app/Http/Controllers/UserController.php @@ -190,7 +190,7 @@ public function editProfile(Request $request, $username) $image->move(public_path('/files/img/'), $filename); } else { return redirect()->route('users.show', ['username' => $user->username]) - ->withErrors('Because you are uploading a GIF, your avatar must be symmetrical!'); + ->withErrors('Because you are uploading a GIF, your avatar must be square!'); } } $user->image = $user->username.'.'.$image->getClientOriginalExtension();