@extends('layouts.admin')
@section('title', 'Tạo tài khoản mới')
@section('content')
@if(session('success'))
✅ {{ session('success') }}
@endif
@if($errors->any())
@foreach($errors->all() as $error)
❌ {{ $error }}
@endforeach
@endif
Tạo tài khoản mới
Tạo tài khoản người dùng mới trong hệ thống game
@endsection
@section('styles')
@endsection