@extends('crm.layouts.app') @section('styles') @endsection @section('content')
@include('crm.layouts.breadcrumb')

{{__('Manage Users')}}

@can('create-user', User::class) {{__('Import Bulk Users ')}} @endcan

{{__("Note: Once you created an account with an email ID, it can't be changed. Email IDs are unique for users for the purpose of login.")}}

@if($errors) @foreach ($errors->all() as $error)
{{ $error }}
@endforeach @endif
{{-- --}}
{{__('ID')}} {{__('Status')}} {{__('Role (ID)')}} {{__('Name')}} {{__('Email')}} {{__('Phone')}} {{__('Actions')}}ID Status Role Name Email Phone Action
{{-- All Modal Starts Here --}} @endsection @section('scripts') @include('crm.user.users_js') @endsection