Quản lý tài khoản

@can('create account')

Tạo tài khoản mới

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (!empty($mess))
{{ $mess }}
@endif
@csrf

Loại tài khoản

@if ($roles) @foreach ($roles as $role)
@endforeach @endif

+ Quản lý loại tài khoản

@endcan

Danh sách tài khoản

@if (empty($accounts)) @endif @foreach ($accounts as $account) @endforeach
# Tên tài khoản Email Loại tài khoản Trạng thái Hành động
Bạn chưa có loại tài khoản nào. Hãy tạo loại tài khoản đầu tiên.
{{ $loop->iteration }} {{ $account->name }} {{ $account->email }} @if (isset($account->roles)) @foreach ($account->roles as $role) {{ $role->label }}, @endforeach @else Chưa có @endif Ẩn Hiện
@can('edit account') {{ __('Sửa') }}
@csrf @method('delete') {{ __('Delete') }}
@endcan
Xóa