@extends('layouts/default') {{-- Page title --}} @section('title') @if (request('status')=='deleted') {{ trans('general.deleted') }} @elseif (request('admins')=='true') {{ trans('general.show_admins') }} @elseif (request('superadmins')=='true') {{ trans('general.show_superadmins') }} @else {{ trans('general.current') }} @endif {{ trans('general.users') }} @parent @stop @section('header_right') @can('create', \App\Models\User::class) @if ($snipeSettings->ldap_enabled == 1) {{trans('general.ldap_sync')}} @endif @endcan @stop {{-- Page content --}} @section('content')
@include('partials.users-bulk-actions')
@stop @section('moar_scripts') @include ('partials.bootstrap-table') @stop