Upgrades laravel-framework to 12.51.0; fixes old view references to purged button and input components
This commit is contained in:
parent
6cb4819ec7
commit
b579530fad
1370
composer.lock
generated
1370
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@ -8,9 +8,9 @@
|
||||
|
||||
<!-- Password -->
|
||||
<div>
|
||||
<x-input-label for="password" :value="__('Password')" />
|
||||
<x-input.label for="password" :value="__('Password')" />
|
||||
|
||||
<x-text-input id="password" class="block mt-1 w-full"
|
||||
<x-input.text id="password" class="block mt-1 w-full"
|
||||
type="password"
|
||||
name="password"
|
||||
required autocomplete="current-password" />
|
||||
@ -19,9 +19,9 @@
|
||||
</div>
|
||||
|
||||
<div class="flex justify-end mt-4">
|
||||
<x-primary-button>
|
||||
<x-button variant="primary">
|
||||
{{ __('Confirm') }}
|
||||
</x-primary-button>
|
||||
</x-button>
|
||||
</div>
|
||||
</form>
|
||||
</x-guest-layout>
|
||||
|
||||
@ -11,15 +11,15 @@
|
||||
|
||||
<!-- Email Address -->
|
||||
<div>
|
||||
<x-input-label for="email" :value="__('Email')" />
|
||||
<x-text-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required autofocus />
|
||||
<x-input.label for="email" :value="__('Email')" />
|
||||
<x-input.text id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required autofocus />
|
||||
<x-input.error :messages="$errors->get('email')" class="mt-2" />
|
||||
</div>
|
||||
|
||||
<div class="flex items-center justify-end mt-4">
|
||||
<x-primary-button>
|
||||
<x-button variant="primary">
|
||||
{{ __('Email Password Reset Link') }}
|
||||
</x-primary-button>
|
||||
</x-button>
|
||||
</div>
|
||||
</form>
|
||||
</x-guest-layout>
|
||||
|
||||
@ -4,23 +4,23 @@
|
||||
|
||||
<!-- Name -->
|
||||
<div>
|
||||
<x-input-label for="name" :value="__('Name')" />
|
||||
<x-text-input id="name" class="block mt-1 w-full" type="text" name="name" :value="old('name')" required autofocus autocomplete="name" />
|
||||
<x-input.label for="name" :value="__('Name')" />
|
||||
<x-input.text id="name" class="block mt-1 w-full" type="text" name="name" :value="old('name')" required autofocus autocomplete="name" />
|
||||
<x-input.error :messages="$errors->get('name')" class="mt-2" />
|
||||
</div>
|
||||
|
||||
<!-- Email Address -->
|
||||
<div class="mt-4">
|
||||
<x-input-label for="email" :value="__('Email')" />
|
||||
<x-text-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required autocomplete="username" />
|
||||
<x-input.label for="email" :value="__('Email')" />
|
||||
<x-input.text id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required autocomplete="username" />
|
||||
<x-input.error :messages="$errors->get('email')" class="mt-2" />
|
||||
</div>
|
||||
|
||||
<!-- Password -->
|
||||
<div class="mt-4">
|
||||
<x-input-label for="password" :value="__('Password')" />
|
||||
<x-input.label for="password" :value="__('Password')" />
|
||||
|
||||
<x-text-input id="password" class="block mt-1 w-full"
|
||||
<x-input.text id="password" class="block mt-1 w-full"
|
||||
type="password"
|
||||
name="password"
|
||||
required autocomplete="new-password" />
|
||||
@ -30,9 +30,9 @@
|
||||
|
||||
<!-- Confirm Password -->
|
||||
<div class="mt-4">
|
||||
<x-input-label for="password_confirmation" :value="__('Confirm Password')" />
|
||||
<x-input.label for="password_confirmation" :value="__('Confirm Password')" />
|
||||
|
||||
<x-text-input id="password_confirmation" class="block mt-1 w-full"
|
||||
<x-input.text id="password_confirmation" class="block mt-1 w-full"
|
||||
type="password"
|
||||
name="password_confirmation" required autocomplete="new-password" />
|
||||
|
||||
@ -44,9 +44,9 @@
|
||||
{{ __('Already registered?') }}
|
||||
</a>
|
||||
|
||||
<x-primary-button class="ms-4">
|
||||
<x-button variant="primary" class="ms-4">
|
||||
{{ __('Register') }}
|
||||
</x-primary-button>
|
||||
</x-button>
|
||||
</div>
|
||||
</form>
|
||||
</x-guest-layout>
|
||||
|
||||
@ -7,23 +7,23 @@
|
||||
|
||||
<!-- Email Address -->
|
||||
<div>
|
||||
<x-input-label for="email" :value="__('Email')" />
|
||||
<x-text-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email', $request->email)" required autofocus autocomplete="username" />
|
||||
<x-input.label for="email" :value="__('Email')" />
|
||||
<x-input.text id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email', $request->email)" required autofocus autocomplete="username" />
|
||||
<x-input.error :messages="$errors->get('email')" class="mt-2" />
|
||||
</div>
|
||||
|
||||
<!-- Password -->
|
||||
<div class="mt-4">
|
||||
<x-input-label for="password" :value="__('Password')" />
|
||||
<x-text-input id="password" class="block mt-1 w-full" type="password" name="password" required autocomplete="new-password" />
|
||||
<x-input.label for="password" :value="__('Password')" />
|
||||
<x-input.text id="password" class="block mt-1 w-full" type="password" name="password" required autocomplete="new-password" />
|
||||
<x-input.error :messages="$errors->get('password')" class="mt-2" />
|
||||
</div>
|
||||
|
||||
<!-- Confirm Password -->
|
||||
<div class="mt-4">
|
||||
<x-input-label for="password_confirmation" :value="__('Confirm Password')" />
|
||||
<x-input.label for="password_confirmation" :value="__('Confirm Password')" />
|
||||
|
||||
<x-text-input id="password_confirmation" class="block mt-1 w-full"
|
||||
<x-input.text id="password_confirmation" class="block mt-1 w-full"
|
||||
type="password"
|
||||
name="password_confirmation" required autocomplete="new-password" />
|
||||
|
||||
@ -31,9 +31,9 @@
|
||||
</div>
|
||||
|
||||
<div class="flex items-center justify-end mt-4">
|
||||
<x-primary-button>
|
||||
<x-button variant="primary">
|
||||
{{ __('Reset Password') }}
|
||||
</x-primary-button>
|
||||
</x-button>
|
||||
</div>
|
||||
</form>
|
||||
</x-guest-layout>
|
||||
|
||||
@ -14,9 +14,9 @@
|
||||
@csrf
|
||||
|
||||
<div>
|
||||
<x-primary-button>
|
||||
<x-button variant="primary">
|
||||
{{ __('Resend Verification Email') }}
|
||||
</x-primary-button>
|
||||
</x-button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
|
||||
@ -8,15 +8,15 @@
|
||||
|
||||
{{-- Name --}}
|
||||
<div>
|
||||
<x-input-label for="name" :value="__('Name')" />
|
||||
<x-text-input id="name" name="name" type="text" class="mt-1 block w-full"
|
||||
<x-input.label for="name" :value="__('Name')" />
|
||||
<x-input.text id="name" name="name" type="text" class="mt-1 block w-full"
|
||||
:value="old('name', $instance?->displayname ?? '')" required autofocus />
|
||||
<x-input.error class="mt-2" :messages="$errors->get('name')" />
|
||||
</div>
|
||||
|
||||
{{-- Description --}}
|
||||
<div>
|
||||
<x-input-label for="description" :value="__('Description')" />
|
||||
<x-input.label for="description" :value="__('Description')" />
|
||||
<textarea id="description" name="description" rows="3"
|
||||
class="mt-1 block w-full rounded-md shadow-xs border-gray-300 focus:border-indigo-300 focus:ring-3">{{ old('description', $instance?->description ?? '') }}</textarea>
|
||||
<x-input.error class="mt-2" :messages="$errors->get('description')" />
|
||||
@ -24,7 +24,7 @@
|
||||
|
||||
{{-- Timezone --}}
|
||||
<div>
|
||||
<x-input-label for="timezone" :value="__('Timezone')" />
|
||||
<x-input.label for="timezone" :value="__('Timezone')" />
|
||||
<select id="timezone" name="timezone"
|
||||
class="mt-1 block w-full rounded-md border-gray-300 focus:border-indigo-300 focus:ring-3">
|
||||
@foreach(timezone_identifiers_list() as $tz)
|
||||
@ -38,15 +38,15 @@
|
||||
</div>
|
||||
|
||||
{{-- COLOR --}}
|
||||
<x-input-label for="color" :value="__('Color')" class="mt-4" />
|
||||
<x-text-input id="color" name="color" type="text" class="mt-1 block w-32"
|
||||
<x-input.label for="color" :value="__('Color')" class="mt-4" />
|
||||
<x-input.text id="color" name="color" type="text" class="mt-1 block w-32"
|
||||
placeholder="#007AFF"
|
||||
:value="old('color', $calendar?->meta->color ?? $instance?->calendarcolor ?? '')" />
|
||||
|
||||
{{-- Submit --}}
|
||||
<div class="flex justify-end">
|
||||
<x-primary-button>
|
||||
<x-button variant="primary">
|
||||
{{ $isEdit ? __('Save Changes') : __('Create') }}
|
||||
</x-primary-button>
|
||||
</x-button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user