Showing user profile data on front-end

You are trying to access the meta data of the user with ID stored in $user->ID but the object $user is not defined in your code. You are also using an undefined variable $user_ID.

The quickest fix in your code would be to change this:

get_the_author_meta( 'province', $user->ID ) )

With:

get_the_author_meta( 'province', $userdata->ID ) )

Tip: turn WP_DEBUG on to get notice about those kind of errrors.