87 lines
2.8 KiB
Vue
87 lines
2.8 KiB
Vue
<script setup>
|
|
import InputError from '@/Components/InputError.vue';
|
|
import InputLabel from '@/Components/InputLabel.vue';
|
|
import PrimaryButton from '@/Components/PrimaryButton.vue';
|
|
import TextInput from '@/Components/TextInput.vue';
|
|
import { Link, useForm, usePage } from '@inertiajs/vue3';
|
|
|
|
defineProps({
|
|
mustVerifyEmail: {
|
|
type: Boolean,
|
|
},
|
|
status: {
|
|
type: String,
|
|
},
|
|
});
|
|
|
|
const user = usePage().props.auth.user;
|
|
|
|
const form = useForm({
|
|
name: user.name,
|
|
email: user.email,
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<section>
|
|
<header class="mb-3">
|
|
<h2 class="h5 mb-1">Profile Information</h2>
|
|
<p class="text-muted mb-0">Update your account's profile information and email address.</p>
|
|
</header>
|
|
|
|
<form @submit.prevent="form.patch(route('profile.update'))" class="row g-3">
|
|
<div class="col-12">
|
|
<InputLabel for="name" value="Name" />
|
|
|
|
<TextInput
|
|
id="name"
|
|
type="text"
|
|
class="mt-1"
|
|
v-model="form.name"
|
|
required
|
|
autofocus
|
|
autocomplete="name"
|
|
/>
|
|
|
|
<InputError :message="form.errors.name" />
|
|
</div>
|
|
|
|
<div class="col-12">
|
|
<InputLabel for="email" value="Email" />
|
|
|
|
<TextInput
|
|
id="email"
|
|
type="email"
|
|
class="mt-1"
|
|
v-model="form.email"
|
|
required
|
|
autocomplete="username"
|
|
/>
|
|
|
|
<InputError :message="form.errors.email" />
|
|
</div>
|
|
|
|
<div v-if="mustVerifyEmail && user.email_verified_at === null" class="col-12">
|
|
<p class="mb-2">
|
|
Your email address is unverified.
|
|
<Link :href="route('verification.send')" method="post" as="button" class="text-decoration-underline small">
|
|
Click here to re-send the verification email.
|
|
</Link>
|
|
</p>
|
|
|
|
<div v-show="status === 'verification-link-sent'" class="alert alert-success py-2 mb-0">
|
|
A new verification link has been sent to your email address.
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-12 d-flex align-items-center gap-3">
|
|
<PrimaryButton :disabled="form.processing">Save</PrimaryButton>
|
|
|
|
<Transition enter-active-class="transition ease-in-out" enter-from-class="opacity-0" leave-active-class="transition ease-in-out" leave-to-class="opacity-0">
|
|
<p v-if="form.recentlySuccessful" class="text-muted mb-0">Saved.</p>
|
|
</Transition>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
</template>
|