Laravel Jetsream Profile page not loading on fresh install



PHP Snippet 1:

<div v-show="user.email_verified_at === null">

PHP Snippet 2:

v-if="$page.props.jetstream.hasEmailVerification"

PHP Snippet 3:

<div v-if="$page.props.jetstream.hasEmailVerification" v-show="user.email_verified_at === null">
  <p class="text-sm mt-2">
    Your email address is unverified.

    <Link
      :href="route('verification.send')"
      method="post"
      as="button"
      class="underline text-gray-600 hover:text-gray-900"
      @click.prevent="sendEmailVerification"
    >
      Click here to re-send the verification email.
    </Link>
  </p>

  <div v-show="verificationLinkSent" class="mt-2 font-medium text-sm text-green-600">
    A new verification link has been sent to your email address.
  </div>
</div>

PHP Snippet 4:

Features::emailVerification()