@extends('layouts.app', [ 'class' => '', 'elementActive' => 'profile_', ]) @section('content')
@if (session('status')) @endif @if (session('password_status')) @endif
...
...
{{ __(auth()->user()->name) }}

@ {{ __(auth()->user()->name) }}

{{ __('') }}
{{ __('') }}
{{ __('') }}

{{--

{{ __('Team Members') }}

  • Circle Image
    {{ __('DJ Khaled') }}
    {{ __('Offline') }}
  • Circle Image
    {{ __('Creative Tim') }}
    {{ __('Available') }}
  • Circle Image
    {{ __('Flume') }}
    {{ __('Busy') }}
--}}
@csrf @method('PUT')
{{ __('Perfil de Usuario') }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@csrf @method('PUT')
{{ __('Cambio de ContraseƱa') }}
@if ($errors->has('old_password')) {{ $errors->first('old_password') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@endsection