@extends('layouts.admin') @section('title', 'Edit User - ' . $user->name) @section('content')
Back to User

Edit User

Update user information and settings

@if ($errors->any())

There were errors with your submission

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')

User Information

Update basic information about the user

Password

Leave blank to keep current password

Cancel
@endsection