@extends('backend.layouts.app') @section('content')

{{ __('List of Users') }}

@foreach ($all as $key => $row) @endforeach
{{ __('Serial') }} {{ __('Name') }} {{ __('Email') }} {{ __('Role') }} {{ __('Action') }}
{{ $row->id }} {{ $row->name }} {{ $row->email }} {{ $row->role }} {{ __('Edit') }} {{ __('Delete') }}
@csrf {{-- Edit Delete --}}
{{ __('Serial') }} {{ __('Name') }} {{ __('Email') }}Email {{ __('Role') }} {{ __('Action') }}
@endsection