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