2023-12-09 14:47:03 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<h3 class="font-semibold text-2xl text-gray-900">
|
|
|
|
Password
|
|
|
|
</h3>
|
|
|
|
<small class="text-gray-600">Manage your password.</small>
|
|
|
|
|
|
|
|
<form class="mt-3" @submit.prevent="update" @keydown="form.onKeydown($event)">
|
|
|
|
<alert-success class="mb-5" :form="form" message="Password updated." />
|
|
|
|
|
|
|
|
<!-- Password -->
|
|
|
|
<text-input native-type="password"
|
|
|
|
name="password" :form="form" label="Password" :required="true"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<!-- Password Confirmation-->
|
|
|
|
<text-input native-type="password"
|
|
|
|
name="password_confirmation" :form="form" label="Confirm Password" :required="true"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<!-- Submit Button -->
|
|
|
|
<v-button :loading="form.busy" class="mt-4">
|
|
|
|
Update password
|
|
|
|
</v-button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import SeoMeta from '../../mixins/seo-meta.js'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
mixins: [SeoMeta],
|
|
|
|
scrollToTop: false,
|
|
|
|
|
|
|
|
data: () => ({
|
|
|
|
metaTitle: 'Password',
|
2023-12-24 19:19:59 +00:00
|
|
|
form: useForm({
|
2023-12-09 14:47:03 +00:00
|
|
|
password: '',
|
|
|
|
password_confirmation: ''
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
async update () {
|
|
|
|
await this.form.patch('/api/settings/password')
|
|
|
|
|
|
|
|
this.form.reset()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|