@extends('layouts.app') @section('content')
@if(session('message'))
{{ session('message') }}
@endif
Configuración de mi cuenta
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('surname')) {{ $errors->first('surname') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@include('includes.avatar') @if ($errors->has('image_path')) {{ $errors->first('image_path') }} @endif
@endsection