Having the issue when loading the route /users or /user/add and being return an error of;
ReflectionException in Route.php line 280: Class App\\Http
The create method was missing the correct array brackets.
User::create([ 'email' => $input['email'], 'password' => Hash::make($password), 'first_name' => $input['first_name'], 'surname' => $input['surname'], 'phone_number' => $input['phone_number'], 'user_type' => $input['user_type'], ]);