From 90585656d25b1fed0da4c1482617b4e1fce22a79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cihan=20=C5=9Eent=C3=BCrk?= <53110792+CihanSenturk@users.noreply.github.com> Date: Thu, 30 Sep 2021 10:45:27 +0300 Subject: [PATCH] portal customer address details added --- resources/views/portal/profile/edit.blade.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/resources/views/portal/profile/edit.blade.php b/resources/views/portal/profile/edit.blade.php index 0a02f665c..dd8406c9d 100644 --- a/resources/views/portal/profile/edit.blade.php +++ b/resources/views/portal/profile/edit.blade.php @@ -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', []) }}