CREATE VIEW Update_Pay WITH SCHEMABINDING AS SELECT FirstName, LastName, Phone, Pay FROM HumanResources.dbo.Employees

You have created a view with the following code:

CREATE VIEW Update_Pay WITH SCHEMABINDING AS SELECT FirstName, LastName, Phone, Pay FROM HumanResources.dbo.Employees

Answer – Change the code to look like this:
CREATE VIEW Update_Pay AS SELECT FirstName, LastName, Phone, Pay FROM HumanRecourses.Employees

 (You need the SCHEMABINDING option on a view that you intend to index, but you cannot have three-part notation. You must create indexed views using only two-part notation; no three- or four-part notation is allowed.)