@extends('layouts.app') @section('title', 'Editar Perfil') @section('content')

Editar Perfil

Informações Pessoais
@if (session('status') === 'profile-updated') @endif
@csrf @method('patch')
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror @if ($user instanceof \Illuminate\Contracts\Auth\MustVerifyEmail && ! $user->hasVerifiedEmail())

Seu email não foi verificado. @csrf

@if (session('status') === 'verification-link-sent')

Um novo link de verificação foi enviado para seu email.

@endif
@endif
Alterar Senha
@if (session('status') === 'password-updated') @endif
@csrf @method('put')
@error('current_password', 'updatePassword')
{{ $message }}
@enderror
@error('password', 'updatePassword')
{{ $message }}
@enderror
@error('password_confirmation', 'updatePassword')
{{ $message }}
@enderror
Avatar Atual
@if($user->avatar) Avatar do usuário @else Avatar padrão @endif
{{ $user->name }}

{{ $user->email }}

Alterar Avatar
@endsection