mirror of
https://github.com/twinpath/app-beta.git
synced 2026-01-26 05:45:26 +07:00
109 lines
7.7 KiB
PHP
109 lines
7.7 KiB
PHP
<div x-data="{saveProfile(){
|
|
console.log('Saving profile...');
|
|
}}">
|
|
<div class="p-5 border border-gray-200 rounded-2xl dark:border-gray-800 lg:p-6">
|
|
<div class="flex flex-col gap-6 lg:flex-row lg:items-start lg:justify-between">
|
|
<div>
|
|
<h4 class="text-lg font-semibold text-gray-800 dark:text-white/90 lg:mb-6">Address</h4>
|
|
|
|
<div class="grid grid-cols-1 gap-4 lg:grid-cols-2 lg:gap-7 2xl:gap-x-32">
|
|
<div>
|
|
<p class="mb-2 text-xs leading-normal text-gray-500 dark:text-gray-400">Country</p>
|
|
<p class="text-sm font-medium text-gray-800 dark:text-white/90">United States</p>
|
|
</div>
|
|
|
|
<div>
|
|
<p class="mb-2 text-xs leading-normal text-gray-500 dark:text-gray-400">City/State</p>
|
|
<p class="text-sm font-medium text-gray-800 dark:text-white/90">
|
|
Phoenix, United States
|
|
</p>
|
|
</div>
|
|
|
|
<div>
|
|
<p class="mb-2 text-xs leading-normal text-gray-500 dark:text-gray-400">
|
|
Postal Code
|
|
</p>
|
|
<p class="text-sm font-medium text-gray-800 dark:text-white/90">ERT 2489</p>
|
|
</div>
|
|
|
|
<div>
|
|
<p class="mb-2 text-xs leading-normal text-gray-500 dark:text-gray-400">TAX ID</p>
|
|
<p class="text-sm font-medium text-gray-800 dark:text-white/90">AS4568384</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<button @click="$dispatch('open-profile-address-modal')"
|
|
class="flex w-full items-center justify-center gap-2 rounded-full border border-gray-300 bg-white px-4 py-3 text-sm font-medium text-gray-700 shadow-theme-xs hover:bg-gray-50 hover:text-gray-800 dark:border-gray-700 dark:bg-gray-800 dark:text-gray-400 dark:hover:bg-white/[0.03] dark:hover:text-gray-200 lg:inline-flex lg:w-auto">
|
|
<svg class="fill-current" width="18" height="18" viewBox="0 0 18 18" fill="none"
|
|
xmlns="http://www.w3.org/2000/svg">
|
|
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
d="M15.0911 2.78206C14.2125 1.90338 12.7878 1.90338 11.9092 2.78206L4.57524 10.116C4.26682 10.4244 4.0547 10.8158 3.96468 11.2426L3.31231 14.3352C3.25997 14.5833 3.33653 14.841 3.51583 15.0203C3.69512 15.1996 3.95286 15.2761 4.20096 15.2238L7.29355 14.5714C7.72031 14.4814 8.11172 14.2693 8.42013 13.9609L15.7541 6.62695C16.6327 5.74827 16.6327 4.32365 15.7541 3.44497L15.0911 2.78206ZM12.9698 3.84272C13.2627 3.54982 13.7376 3.54982 14.0305 3.84272L14.6934 4.50563C14.9863 4.79852 14.9863 5.2734 14.6934 5.56629L14.044 6.21573L12.3204 4.49215L12.9698 3.84272ZM11.2597 5.55281L5.6359 11.1766C5.53309 11.2794 5.46238 11.4099 5.43238 11.5522L5.01758 13.5185L6.98394 13.1037C7.1262 13.0737 7.25666 13.003 7.35947 12.9002L12.9833 7.27639L11.2597 5.55281Z"
|
|
fill="" />
|
|
</svg>
|
|
Edit
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<x-ui.modal x-data="{ open: false }" @open-profile-address-modal.window="open = true" :isOpen="false" class="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 class="flex flex-col">
|
|
<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" value="United States"
|
|
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" value="Poenix, Arizona, United States"
|
|
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" value="ERT 2489"
|
|
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" value="AS4568384"
|
|
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>
|
|
</div>
|