@extends('admin.layouts.app') @section('title', 'Edit ' . $user->name) @section('page-title', 'Edit User') @section('page-subtitle', 'Update ' . $user->name . '\'s account') @section('content')
@csrf @method('PUT') @if($errors->any())
@foreach($errors->all() as $error)

• {{ $error }}

@endforeach
@endif

Change Password (leave blank to keep current)

is_active ? 'checked' : '' }} class="w-4 h-4 rounded accent-indigo-500">
Cancel
@endsection