Merge pull request #1112 from batuhawk/master

Portal profile value problem fixed
This commit is contained in:
Batuhan Baş 2020-01-11 17:05:48 +03:00 committed by GitHub
commit 83ba5c7691
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,11 +21,11 @@
{{ Form::emailGroup('email', trans('general.email'), 'envelope') }}
{{ Form::textGroup('tax_number', trans('general.tax_number'), 'percent', []) }}
{{ Form::textGroup('tax_number', trans('general.tax_number'), 'percent', [], $user->contact->tax_number) }}
{{ Form::textGroup('phone', trans('general.phone'), 'phone', []) }}
{{ Form::textGroup('phone', trans('general.phone'), 'phone', [], $user->contact->phone) }}
{{ Form::textareaGroup('address', trans('general.address')) }}
{{ Form::textareaGroup('address', trans('general.address'), [], $user->contact->address) }}
{{ Form::passwordGroup('password', trans('auth.password.current'), 'key', []) }}