@extends('web.panel.layout') @section('titulo', config('app.name') . ' - Editar Perfil') @section('ruta-panel') @endsection @section('contenido-panel')
@if (session()->has('success'))
{{ session()->get('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Editar Perfil

@csrf @method('PATCH')
@endsection