Merge pull request #2271 from CihanSenturk/master

portal customer address details added
This commit is contained in:
Cüneyt Şentürk 2021-09-30 10:56:11 +03:00 committed by GitHub
commit c96b801199
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,6 +28,14 @@
{{ Form::textareaGroup('address', trans('general.address'), [], $user->contact->address) }}
{{ Form::textGroup('city', trans_choice('general.cities', 1), 'city', [], $user->contact->city) }}
{{ Form::textGroup('zip_code', trans('general.zip_code'), 'mail-bulk', [], $user->contact->zip_code) }}
{{ Form::textGroup('state', trans('general.state'), 'city', [], $user->contact->state) }}
{{ Form::selectGroup('country', trans_choice('general.countries', 1), 'globe-americas', trans('countries'), $user->contact->country, []) }}
{{ Form::passwordGroup('password', trans('auth.password.current'), 'key', []) }}
{{ Form::passwordGroup('password_confirmation', trans('auth.password.current_confirm'), 'key', []) }}