@extends('layouts.app-layout', [ 'title' => 'Dashboard', 'breadcrumbs' => [ [ 'title' => 'Profile settings', 'href' => '/settings/profile', ], ], ]) @section('content')
@include('components.shared.heading-small', [ 'title' => 'Update Profile', 'description' => 'Update your account information.', ])
@csrf @method('patch')
{{ $errors['name'] ?? ($errors['auth'] ?? null) }}
{{ $errors['email'] ?? ($errors['auth'] ?? null) }}
@endsection