Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.x] Fix validation errors and connect account form #215

Merged
merged 7 commits into from
Aug 17, 2022

Conversation

joelbutcher
Copy link
Owner

Updates our version of Login.vue and Register.vue to account for changes made in laravel/jetstream#1123.

Also renames the SocialstreamProviders.vue component to Socialstream.vue and adds the following to the component for displaying Socialstream errors:

<script setup>
import {computed} from 'vue';
import {usePage} from '@inertiajs/inertia-vue3';
import JetInputError from '@/Components/InputError.vue';

const error = computed(() => usePage().props.value.errors.socialstream);
</script>


<template>
  <div>
    // ...

    <JetInputError class="mt-b text-center" :message="error" />
  </div>
</template>

@joelbutcher joelbutcher merged commit e35f79e into 3.x Aug 17, 2022
@joelbutcher joelbutcher deleted the fix-validation-errors-and-connect-account-form branch August 17, 2022 20:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants