@extends('layouts.base') @section('heading') {{ __('Processes') }} @endsection @section('info') Manage users @endsection @section('focus_action')
@csrf
@endsection @section('body')
{{--
--}} @if (empty($users) || is_null($users))
No user created yet
@else @include('app.users.components.table') @endif
@endsection