diff --git a/resources/views/portal/default/profile/client_information.blade.php b/resources/views/portal/default/profile/client_information.blade.php index 7ae6adb0b79e..9ab393098c27 100644 --- a/resources/views/portal/default/profile/client_information.blade.php +++ b/resources/views/portal/default/profile/client_information.blade.php @@ -1,6 +1,6 @@
-
+
{!! Former::framework('TwitterBootstrap4'); !!} @@ -18,11 +18,7 @@
-
- - diff --git a/resources/views/portal/default/profile/index.blade.php b/resources/views/portal/default/profile/index.blade.php index d8bee5672824..7addb21fcf10 100644 --- a/resources/views/portal/default/profile/index.blade.php +++ b/resources/views/portal/default/profile/index.blade.php @@ -4,11 +4,8 @@ @endpush @section('body') @@ -23,7 +20,7 @@ {!! Former::framework('TwitterBootstrap4'); !!} - {!! Former::vertical_open_for_files() + {!! Former::horizontal_open_for_files() ->id('update_contact') ->route('client.profile.update', auth()->user()->hashed_id) ->method('PUT'); !!} @@ -33,7 +30,7 @@
-
+
@if(auth()->user()->avatar) @@ -50,21 +47,20 @@
-
+
- {!! Former::text('first_name')->placeholder( ctrans('texts.first_name'))->label('')->value(auth()->user()->first_name)!!} + {!! Former::text('first_name')->label( ctrans('texts.first_name'))->value(auth()->user()->first_name) !!} - {!! Former::text('last_name')->placeholder( ctrans('texts.last_name'))->label('')->value(auth()->user()->last_name) !!} + {!! Former::text('last_name')->placeholder('')->label( ctrans('texts.last_name'))->value(auth()->user()->last_name) !!} - {!! Former::text('email')->placeholder( ctrans('texts.email'))->label('')->value(auth()->user()->email) !!} + {!! Former::text('email')->placeholder('')->label(ctrans('texts.email'))->value(auth()->user()->email) !!} - {!! Former::text('phone')->placeholder( ctrans('texts.phone'))->label('')->value(auth()->user()->phone) !!} + {!! Former::text('phone')->placeholder('')->label(ctrans('texts.phone'))->value(auth()->user()->phone) !!} - {!! Former::password('password')->placeholder( ctrans('texts.password'))->label('') !!} - - {!! Former::password('password_confirmation')->placeholder( ctrans('texts.confirm_password'))->label('') !!} + {!! Former::password('password')->placeholder('')->label(ctrans('texts.password')) !!} + {!! Former::password('password_confirmation')->placeholder('')->label(ctrans('texts.confirm_password')) !!}