@extends('layouts.app') @section('content')

Edit Role

@if($role->isProtected())
Role sistem ini tidak dapat diubah untuk menjaga integritas sistem.
Kembali @else
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('slug')
{{ $message }}
@enderror Gunakan huruf kecil dan underscore
@error('description')
{{ $message }}
@enderror
Informasi Role:
  • Jumlah User: {{ $role->users->count() }}
  • Dibuat: {{ $role->created_at->format('d M Y H:i') }}
  • Diperbarui: {{ $role->updated_at->format('d M Y H:i') }}
Batal
@endif
@endsection