@extends('layouts.app', ['title' => __('User Profile')]) @section('title', 'Editar Perfil') @section('content') @include('users.partials.header', [ 'title' => __('Bem vindo') . ' '. auth()->user()->name, 'description' => __('Esta é a sua página de perfil. Você pode ver o progresso que fez em seu trabalho e gerenciar seus projetos ou tarefas.'), 'class' => 'col-lg-9' ])

{{ __('Editar perfil') }}

@csrf @method('put')
{{ __('Informações de usuário') }}
@if (session('status')) @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif

@csrf @method('put')
{{ __('Senha') }}
@if (session('password_status')) @endif
@if ($errors->has('old_password')) {{ $errors->first('old_password') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@include('layouts.footers.auth')
@endsection