fix: themed manage account forms
This commit is contained in:
parent
a4bd889d23
commit
a2ecb62a05
@ -35,7 +35,7 @@
|
||||
{{ __('Remember me') }}
|
||||
</label>
|
||||
</div>
|
||||
<div class="justify-content-end mt-4 mb-4">
|
||||
<div class="d-flex justify-content-end mt-4 mb-4 text-end">
|
||||
@if (Route::has('password.request'))
|
||||
<a class="" href="{{ route('password.request') }}">
|
||||
{{ __('Forgot your password?') }}
|
||||
|
@ -63,8 +63,9 @@
|
||||
alt="user avatar"></a>
|
||||
<ul class="submenu">
|
||||
@if (Auth::user())
|
||||
<li><a href="/artist/{{ Auth::user()->artists->first()->slug }}"><i class="ri-user-line"></i> Profile</a></li>
|
||||
<li><a href="/create-artwork"><i class="ri-image-add-line"></i> Create Artwork</a></li>
|
||||
<li><a href="/artist/{{ Auth::user()->artists->first()->slug }}"><i class="ri-profile-line"></i> View Artist Profile</a></li>
|
||||
<li><a href="/profile"><i class="ri-user-line"></i> Manage Account</a></li>
|
||||
<form method="post" action="/logout" name="logout" id="logoutForm">
|
||||
@csrf
|
||||
<li><a href="#" onclick="event.preventDefault(); document.getElementById('logoutForm').submit();"><i class="ri-logout-box-r-line"></i>Sign Out</a></li>
|
||||
|
@ -1,29 +1,20 @@
|
||||
<x-app-layout>
|
||||
<x-slot name="header">
|
||||
<h2 class="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight">
|
||||
{{ __('Manage') }}
|
||||
<h2 class="">
|
||||
{{ __('Manage Account Credentials') }}
|
||||
</h2>
|
||||
</x-slot>
|
||||
|
||||
<div class="py-12">
|
||||
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6">
|
||||
<div class="p-4 sm:p-8 shadow sm:rounded-lg">
|
||||
<div class="max-w-xl">
|
||||
<section class="signup-wrapper signin-wrapper ptb-4">
|
||||
<div class="container">
|
||||
<div class="row d-flex-row d-flex align-content-stretch flex-wrap">
|
||||
<div class="col-xl-5 col-lg-12 authbox">
|
||||
@include('profile.partials.update-profile-information-form')
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="p-4 sm:p-8 shadow sm:rounded-lg">
|
||||
<div class="max-w-xl">
|
||||
<div class="col-xl-5 offset-xl-2 col-lg-12 authbox">
|
||||
@include('profile.partials.update-password-form')
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{--<div class="p-4 sm:p-8 shadow sm:rounded-lg">
|
||||
<div class="max-w-xl">
|
||||
@include('profile.partials.delete-user-form')
|
||||
</div>
|
||||
</div>--}}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</x-app-layout>
|
||||
|
@ -1,14 +1,15 @@
|
||||
<section>
|
||||
<header>
|
||||
<h2 class="text-lg font-medium text-gray-900 dark:text-gray-100">
|
||||
{{ __('Update Password') }}
|
||||
</h2>
|
||||
|
||||
<p class="mt-1 text-sm text-gray-600 dark:text-gray-400">
|
||||
{{ __('Ensure your account is using a long, random password to stay secure.') }}
|
||||
</p>
|
||||
</header>
|
||||
|
||||
<div class="row mt-4 gutter-2">
|
||||
<div class="col">
|
||||
<div class="signin-content">
|
||||
<div class="mb-6">
|
||||
<h2 class="mb-2">{{ __('Update Password') }}</h2>
|
||||
<p class="normal">{{ __('Ensure your account is using a long, random password to stay secure.') }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mt-0 gutter-2">
|
||||
<div class="col">
|
||||
<form method="post" action="{{ route('password.update') }}" class="mt-6 space-y-6">
|
||||
@csrf
|
||||
@method('put')
|
||||
@ -31,8 +32,8 @@
|
||||
<x-input-error :messages="$errors->updatePassword->get('password_confirmation')" class="mt-2" />
|
||||
</div>
|
||||
|
||||
<div class="flex items-center gap-4">
|
||||
<x-primary-button>{{ __('Save') }}</x-primary-button>
|
||||
<div class="d-flex justify-content-end text-end mt-4 mb-4">
|
||||
<x-primary-button class="ml-3 btn btn-gradient"><span>{{ __('Save') }}</span></x-primary-button>
|
||||
|
||||
@if (session('status') === 'password-updated')
|
||||
<p
|
||||
@ -45,4 +46,5 @@ class="text-sm text-gray-600 dark:text-gray-400"
|
||||
@endif
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,18 +1,20 @@
|
||||
<section>
|
||||
<header>
|
||||
<h2>
|
||||
{{ __('Login Information') }}
|
||||
</h2>
|
||||
<p>
|
||||
{{ __("Update your account's username and email address. Note, your username may not be the same as your public artist profile.") }}
|
||||
</p>
|
||||
</header>
|
||||
|
||||
<div class="row mt-4 gutter-2">
|
||||
<div class="col">
|
||||
<div class="signin-content">
|
||||
<div class="mb-6">
|
||||
<h2 class="mb-2">{{ __('Edit Login Information') }}</h2>
|
||||
<p class="normal">{{ __("Update your account's username and email address. Note, your username may not be the same as your public artist profile.") }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mt-0 gutter-2">
|
||||
<div class="col">
|
||||
<form id="send-verification" method="post" action="{{ route('verification.send') }}">
|
||||
@csrf
|
||||
</form>
|
||||
|
||||
<form method="post" action="{{ route('profile.update') }}" class="mt-6 space-y-6">
|
||||
<form method="post" action="{{ route('profile.update') }}">
|
||||
@csrf
|
||||
@method('patch')
|
||||
|
||||
@ -32,8 +34,8 @@
|
||||
<p class="text-sm mt-2 text-gray-800 dark:text-gray-200">
|
||||
{{ __('Your email address is unverified.') }}
|
||||
|
||||
<button form="send-verification" class="underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800">
|
||||
{{ __('Click here to re-send the verification email.') }}
|
||||
<button form="send-verification" class="btn btn-small btn-gradient">
|
||||
<span>{{ __('Click here to re-send the verification email.') }}</span>
|
||||
</button>
|
||||
</p>
|
||||
|
||||
@ -46,9 +48,8 @@
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<div class="flex items-center gap-4">
|
||||
<x-primary-button>{{ __('Save') }}</x-primary-button>
|
||||
|
||||
<div class="d-flex justify-content-end mt-4 mb-4 text-end">
|
||||
<x-primary-button class="ml-3 btn btn-gradient"><span>{{ __('Update Login Information') }}</span></x-primary-button>
|
||||
@if (session('status') === 'profile-updated')
|
||||
<p
|
||||
x-data="{ show: true }"
|
||||
@ -60,4 +61,5 @@ class="text-sm text-gray-600 dark:text-gray-400"
|
||||
@endif
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user