@extends('common/main/layout') @section('content')

@lang('db.users') @lang('system.title.index')

@include('common/error-message')
@foreach($users as $user) @endforeach
@lang('system.command.edit') @lang('db.user.id') @lang('db.user.name') @lang('db.user.account') @lang('db.user.phone_number') @lang('db.user.email') @lang('system.command.delete')
{{ $user->id }} {{ $user->name }} {{ $user->account }} @if (!empty($user->phone_number)){{ $user->phone_number }}@endif @if (!empty($user->email)){{ $user->email }}@endif
@csrf
@include('common/pagination', ['tables' => $users])
@include('common/script-sort') @include('common/script-del_check') @endsection