Skip to content

Pull master #330

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

Merged
merged 4 commits into from
Jun 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/js/pages/auth/ForgotPassword.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ onMounted(() => {

<template>
<GuestAuthLayout>
<InertiaHead title="Forgot Password" />
<InertiaHead title="Forgot password" />

<template
v-if="status"
Expand Down
2 changes: 1 addition & 1 deletion resources/js/pages/auth/Register.vue
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ onMounted(() => {
</div>

<div class="flex flex-col gap-2">
<label for="password-confirmation">Confirm Password</label>
<label for="password-confirmation">Confirm password</label>
<Password
v-model="registerForm.password_confirmation"
:invalid="Boolean(registerForm.errors?.password_confirmation)"
Expand Down
6 changes: 3 additions & 3 deletions resources/js/pages/auth/ResetPassword.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ onMounted(() => {

<template>
<GuestAuthLayout>
<InertiaHead title="Reset Password" />
<InertiaHead title="Reset password" />

<template #title>
<div class="text-center">
Expand Down Expand Up @@ -77,7 +77,7 @@ onMounted(() => {
</div>

<div class="flex flex-col gap-2">
<label for="password">New Password</label>
<label for="password">New password</label>
<Password
v-model="resetPwForm.password"
:invalid="Boolean(resetPwForm.errors?.password)"
Expand All @@ -98,7 +98,7 @@ onMounted(() => {
</div>

<div class="flex flex-col gap-2">
<label for="password-confirmation">Confirm New Password</label>
<label for="password-confirmation">Confirm new password</label>
<Password
v-model="resetPwForm.password_confirmation"
:invalid="Boolean(resetPwForm.errors?.password_confirmation)"
Expand Down
2 changes: 1 addition & 1 deletion resources/js/pages/auth/VerifyEmail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const verificationLinkSent = computed(

<template>
<GuestAuthLayout>
<InertiaHead title="Email Verification" />
<InertiaHead title="Email verification" />

<template #title>
<div class="text-center">
Expand Down
4 changes: 2 additions & 2 deletions resources/js/pages/settings/Appearance.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import SelectColorModeButton from '@/components/SelectColorModeButton.vue';

const breadcrumbs = [
{ label: 'Dashboard', route: route('dashboard') },
{ label: 'Appearance Settings' },
{ label: 'Appearance settings' },
];
</script>

<template>
<AppLayout :breadcrumbs>
<InertiaHead title="Appearance Settings" />
<InertiaHead title="Appearance settings" />

<SettingsLayout>
<Card
Expand Down
12 changes: 6 additions & 6 deletions resources/js/pages/settings/Password.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ defineProps({

const breadcrumbs = [
{ label: 'Dashboard', route: route('dashboard') },
{ label: 'Password Settings' },
{ label: 'Password settings' },
];

const currentPasswordInput = useTemplateRef('current-password-input');
Expand Down Expand Up @@ -67,15 +67,15 @@ const updatePassword = () => {

<template>
<AppLayout :breadcrumbs>
<InertiaHead title="Password Settings" />
<InertiaHead title="Password settings" />

<SettingsLayout>
<Card
pt:body:class="max-w-2xl space-y-3"
pt:caption:class="space-y-1"
>
<template #title>
Update Password
Update password
</template>
<template #subtitle>
Ensure your account is using a long, random password to stay secure
Expand All @@ -86,7 +86,7 @@ const updatePassword = () => {
@submit.prevent="updatePassword"
>
<div class="flex flex-col gap-2">
<label for="current-password">Current Password</label>
<label for="current-password">Current password</label>
<Password
ref="current-password-input"
v-model="updatePasswordForm.current_password"
Expand All @@ -108,7 +108,7 @@ const updatePassword = () => {
</Message>
</div>
<div class="flex flex-col gap-2">
<label for="password">New Password</label>
<label for="password">New password</label>
<Password
ref="new-password-input"
v-model="updatePasswordForm.password"
Expand All @@ -129,7 +129,7 @@ const updatePassword = () => {
</Message>
</div>
<div class="flex flex-col gap-2">
<label for="password-confirmation">Confirm New Password</label>
<label for="password-confirmation">Confirm pew password</label>
<Password
v-model="updatePasswordForm.password_confirmation"
:invalid="Boolean(updatePasswordForm.errors?.password_confirmation)"
Expand Down
8 changes: 4 additions & 4 deletions resources/js/pages/settings/Profile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ defineProps({

const breadcrumbs = [
{ label: 'Dashboard', route: route('dashboard') },
{ label: 'Profile Settings' },
{ label: 'Profile settings' },
];

const deleteUserModalOpen = ref(false);
Expand Down Expand Up @@ -54,7 +54,7 @@ const updateProfileInformation = () => {

<template>
<AppLayout :breadcrumbs>
<InertiaHead title="Profile Settings" />
<InertiaHead title="Profile settings" />

<SettingsLayout>
<div class="space-y-4 md:space-y-8">
Expand All @@ -63,7 +63,7 @@ const updateProfileInformation = () => {
pt:caption:class="space-y-1"
>
<template #title>
Profile Information
Profile information
</template>
<template #subtitle>
Update your name and email address
Expand Down Expand Up @@ -146,7 +146,7 @@ const updateProfileInformation = () => {
pt:caption:class="space-y-1"
>
<template #title>
Delete Account
Delete account
</template>
<template #subtitle>
Delete your account and all of its resources
Expand Down