- {!! 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')) !!}