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

Edit Admin User: {{ $admin->name }}

Back to Admin Users
Admin User Information
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
Leave blank to keep current password @error('password')
{{ $message }}
@enderror
@error('password_confirmation')
{{ $message }}
@enderror
status) == 1 ? 'checked' : '' }}>
status) == 0 ? 'checked' : '' }}>
@error('status')
{{ $message }}
@enderror
is_super_admin) == 1 ? 'checked' : '' }}>
is_super_admin) == 0 ? 'checked' : '' }}>
@error('is_super_admin')
{{ $message }}
@enderror
@foreach($roles as $role)
hasRole($role) ? 'checked' : '' }}>
@endforeach
@error('role_ids')
{{ $message }}
@enderror
@foreach($domains as $domain)
domains()->where('domain_id', $domain->id)->exists() ? 'checked' : '' }}>
@endforeach
Multiple admins can be assigned to the same domain. Publishers can only manage content within their assigned domains. @error('domain_ids')
{{ $message }}
@enderror
Cancel
Admin User Details
Created:
{{ $admin->created_at->format('M j, Y g:i A') }}
Last Updated:
{{ $admin->updated_at->format('M j, Y g:i A') }}
Important Notes
Super Admin: Changing this setting affects system-wide access permissions.
Domains: Control which content areas this admin can manage. Publishers can only manage assigned domains.
@endsection