@extends('layouts.nebulox') @section('page-title') Admin · Access @endsection @section('content') @if(session('status'))
{{ session('status') }}
@endif
Select a user, then choose which locations they can view.
@if(empty($users) || count($users) === 0)
No child users found. A user appears here only after they accept the invitation.
@else
@csrf
Locations
Tick the allowed locations
@foreach($locations as $loc) @endforeach
@endif
@endsection