@extends('layouts.app') @section('title', 'Users') @section('content')
@include('flash-message') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
all users
@can('user-create') Add @endcan @can('user-import')@endcan @can('user-export')
@csrf
@endcan
@each('user.partials.table', $users, 'user')
S.N Name Email Address Actions
@stop @push('scripts') @endpush