Skip to content

Commit 5fdfd1d

Browse files
committed
fix: merge conflicts
1 parent f991021 commit 5fdfd1d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/js/pages/auth/ConfirmPassword.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<script setup lang="ts">
2-
import { store } from '@/routes/password/confirm'
32
import InputError from '@/components/InputError.vue';
43
import { Button } from '@/components/ui/button';
54
import { Input } from '@/components/ui/input';
65
import { Label } from '@/components/ui/label';
76
import AuthLayout from '@/layouts/AuthLayout.vue';
7+
import { store } from '@/routes/password/confirm';
88
import { Form, Head } from '@inertiajs/vue3';
99
import { LoaderCircle } from 'lucide-vue-next';
1010
</script>
@@ -13,7 +13,7 @@ import { LoaderCircle } from 'lucide-vue-next';
1313
<AuthLayout title="Confirm your password" description="This is a secure area of the application. Please confirm your password before continuing.">
1414
<Head title="Confirm password" />
1515

16-
<Form v-bind="ConfirmablePasswordController.store.form()" reset-on-success v-slot="{ errors, processing }">
16+
<Form v-bind="store.form()" reset-on-success v-slot="{ errors, processing }">
1717
<div class="space-y-6">
1818
<div class="grid gap-2">
1919
<Label htmlFor="password">Password</Label>

0 commit comments

Comments
 (0)