@extends('layouts.admin') @section('title', 'Quản lý tài khoản - MU Admin Panel') @section('content')

Quản lý tài khoản

Quản lý tài khoản người dùng trong hệ thống game MU Online

Tạo tài khoản Tạo hàng loạt Xuất Excel

Tìm kiếm & Lọc

Đặt lại
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
@foreach($errors->all() as $error) {{ $error }} @endforeach
@endif

Danh sách tài khoản @if(isset($accounts) && count($accounts) > 0) ({{ count($accounts) }} tài khoản) @endif

@if(isset($accounts) && count($accounts) > 0)
@foreach($accounts as $account) @endforeach
ID Tên đăng nhập Thao tác
#{{ $account->ID }}
{{ $account->UserName }}
{{ $accounts->appends(request()->query())->links('pagination.mobile-optimized') }}
@else
🔍

Không tìm thấy tài khoản nào

Thử thay đổi từ khóa tìm kiếm hoặc loại tìm kiếm

Đặt lại tìm kiếm
@endif
@endsection @section('scripts')