mirror of
https://github.com/twinpath/app.git
synced 2026-01-26 05:15:28 +07:00
67 lines
4.8 KiB
PHP
67 lines
4.8 KiB
PHP
@props(['user', 'show'])
|
|
|
|
<x-ui.modal @open-profile-address-modal.window="open = true" x-model="{{ $show }}" :isOpen="false" containerClass="max-w-[700px]">
|
|
<div
|
|
class="no-scrollbar relative w-full max-w-[700px] overflow-y-auto rounded-3xl bg-white p-4 dark:bg-gray-900 lg:p-11">
|
|
<div class="px-2 pr-14">
|
|
<h4 class="mb-2 text-2xl font-semibold text-gray-800 dark:text-white/90">
|
|
Edit Address
|
|
</h4>
|
|
<p class="mb-6 text-sm text-gray-500 dark:text-gray-400 lg:mb-7">
|
|
Update your details to keep your profile up-to-date.
|
|
</p>
|
|
</div>
|
|
<form x-ref="addressForm" action="{{ route('profile.update') }}" method="POST" class="flex flex-col">
|
|
@csrf
|
|
@method('PATCH')
|
|
<input type="hidden" name="name" value="{{ $user->name }}">
|
|
<input type="hidden" name="email" value="{{ $user->email }}">
|
|
<div class="px-2 overflow-y-auto custom-scrollbar">
|
|
<div class="grid grid-cols-1 gap-x-6 gap-y-5 lg:grid-cols-2">
|
|
<div>
|
|
<label class="mb-1.5 block text-sm font-medium text-gray-700 dark:text-gray-400">
|
|
Country
|
|
</label>
|
|
<input type="text" name="country" value="{{ old('country', $user->country) }}"
|
|
class="dark:bg-dark-900 h-11 w-full appearance-none rounded-lg border border-gray-300 bg-transparent bg-none px-4 py-2.5 text-sm text-gray-800 shadow-theme-xs placeholder:text-gray-400 focus:border-brand-300 focus:outline-hidden focus:ring-3 focus:ring-brand-500/10 dark:border-gray-700 dark:bg-gray-900 dark:text-white/90 dark:placeholder:text-white/30 dark:focus:border-brand-800" />
|
|
</div>
|
|
|
|
<div>
|
|
<label class="mb-1.5 block text-sm font-medium text-gray-700 dark:text-gray-400">
|
|
City/State
|
|
</label>
|
|
<input type="text" name="city_state" value="{{ old('city_state', $user->city_state) }}"
|
|
class="dark:bg-dark-900 h-11 w-full appearance-none rounded-lg border border-gray-300 bg-transparent bg-none px-4 py-2.5 text-sm text-gray-800 shadow-theme-xs placeholder:text-gray-400 focus:border-brand-300 focus:outline-hidden focus:ring-3 focus:ring-brand-500/10 dark:border-gray-700 dark:bg-gray-900 dark:text-white/90 dark:placeholder:text-white/30 dark:focus:border-brand-800" />
|
|
</div>
|
|
|
|
<div>
|
|
<label class="mb-1.5 block text-sm font-medium text-gray-700 dark:text-gray-400">
|
|
Postal Code
|
|
</label>
|
|
<input type="text" name="postal_code" value="{{ old('postal_code', $user->postal_code) }}"
|
|
class="dark:bg-dark-900 h-11 w-full appearance-none rounded-lg border border-gray-300 bg-transparent bg-none px-4 py-2.5 text-sm text-gray-800 shadow-theme-xs placeholder:text-gray-400 focus:border-brand-300 focus:outline-hidden focus:ring-3 focus:ring-brand-500/10 dark:border-gray-700 dark:bg-gray-900 dark:text-white/90 dark:placeholder:text-white/30 dark:focus:border-brand-800" />
|
|
</div>
|
|
|
|
<div>
|
|
<label class="mb-1.5 block text-sm font-medium text-gray-700 dark:text-gray-400">
|
|
TAX ID
|
|
</label>
|
|
<input type="text" name="tax_id" value="{{ old('tax_id', $user->tax_id) }}"
|
|
class="dark:bg-dark-900 h-11 w-full appearance-none rounded-lg border border-gray-300 bg-transparent bg-none px-4 py-2.5 text-sm text-gray-800 shadow-theme-xs placeholder:text-gray-400 focus:border-brand-300 focus:outline-hidden focus:ring-3 focus:ring-brand-500/10 dark:border-gray-700 dark:bg-gray-900 dark:text-white/90 dark:placeholder:text-white/30 dark:focus:border-brand-800" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="flex items-center gap-3 mt-6 lg:justify-end">
|
|
<button @click="open = false" type="button"
|
|
class="flex w-full justify-center rounded-lg border border-gray-300 bg-white px-4 py-2.5 text-sm font-medium text-gray-700 hover:bg-gray-50 dark:border-gray-700 dark:bg-gray-800 dark:text-gray-400 dark:hover:bg-white/[0.03] sm:w-auto">
|
|
Close
|
|
</button>
|
|
<button @click="saveProfile" type="button"
|
|
class="flex w-full justify-center rounded-lg bg-brand-500 px-4 py-2.5 text-sm font-medium text-white hover:bg-brand-600 sm:w-auto">
|
|
Save Changes
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</x-ui.modal>
|