@extends('admin.layout') @section('content')
Thông tin user
# Tên Email SDT Quyền
#{{$user->id}} {{$user->name}} {{$user->email}} {{$user->phone_number}} Hiện tại có {{$user->authorizationScopes->count()}} quyền
{{--
--}}
@php $selected_scopes = []; foreach ($user->authorizationScopes as $u_s) { $selected_scopes[] = $u_s->id; } @endphp
{{csrf_field()}}
Thông tin quyền
@foreach($au_scopes as $scope) @endforeach
# Quyền Select
#{{$scope->id}} {{$scope->title}}
@endsection