@extends('layouts.app') @section('title', 'Edit User') @section('content')

Form Edit User: {{ $user->name }}

@csrf @method('PUT')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
is_active) ? 'checked' : '' }} {{ $user->id === auth()->id() ? 'disabled' : '' }}> @if($user->id === auth()->id())
Anda tidak dapat menonaktifkan akun yang sedang digunakan. @endif
@endsection @push('scripts') @endpush