Merge pull request #2870 from CihanSenturk/portal-profile-address-finder-compability

Portal profile address finder compability
This commit is contained in:
Cüneyt Şentürk 2023-01-17 15:18:05 +03:00 committed by GitHub
commit c5175e800b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,7 @@
<x-form.group.locale /> <x-form.group.locale />
<x-form.group.country :selected="$user->contact->country" not-required /> <x-form.group.textarea name="address" label="{{ trans('general.address') }}" :value="$user->contact->address" v-model="form.address" not-required />
<x-form.group.text name="city" label="{{ trans_choice('general.cities', 1) }}" value="{{ $user->contact->city }}" not-required /> <x-form.group.text name="city" label="{{ trans_choice('general.cities', 1) }}" value="{{ $user->contact->city }}" not-required />
@ -56,7 +56,7 @@
<x-form.group.text name="state" label="{{ trans('general.state') }}" value="{{ $user->contact->state }}" not-required /> <x-form.group.text name="state" label="{{ trans('general.state') }}" value="{{ $user->contact->state }}" not-required />
<x-form.group.textarea name="address" label="{{ trans('general.address') }}" :value="$user->contact->address" /> <x-form.group.country :selected="$user->contact->country" not-required />
</x-slot> </x-slot>
</x-form.section> </x-form.section>