@extends('layouts.app') @section('title', 'My Profile') @section('page-title', 'My Profile') @section('sidebar') @include('partials.user-sidebar') @endsection @section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf @method('PUT')
@endsection