@extends('layouts.' . $template_name) @section('own-content') {{-- se incluye el contenedor sidebar y subheader @include('shared.commons.container-sidebar-subheader', ['windows_side' => true, 'page_subheader' => true]) --}} @php $subheader = ($template_name == 'template6') ? 'page_subheader_list':'page_subheader'; @endphp @include('shared.commons.container-sidebar-subheader', ['windows_side' => true, $subheader => true])

@lang('my_profile.my_profile_title')

@include('shared.commons.logo_name_user', ['not_name' => true])

{{ $user->name }}

{!! Form::model(Auth::user(), [ 'route' => ['customer.update', Auth::user()], 'role' => 'form', 'class' => 'form', 'id' => 'formProfile' ]) !!} {!! Form::token() !!}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('lastname')) {{ $errors->first('lastname') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif

{{ trans('auth.register.password') }}

{{ trans('auth.register.change_password') }}

@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
{!! Form::close() !!}
@endsection @section('extra-head') @parent {!! Html::style(app()->environment('production') ? mix('css/user-profile.css') : asset('css/user-profile.css'), [], $isSSL) !!} @endsection