@extends('backend.admin-master') @section('style') @endsection @section('site-title') {{__('All Users')}} @endsection @section('content')

{{__('All Users')}}

@foreach($all_user as $data) @endforeach
{{__('ID')}} {{__('Name')}} {{__('Email')}} {{__('Username')}} {{__('Action')}}
{{$data->id}} {{$data->name}} {{$data->email}} @if($data->email_verified === 1) @endif {{$data->username}} {{__("Change Password")}}
@csrf
@include('backend.partials.media-upload.media-upload-markup') @endsection @section('script') @include('backend.partials.media-upload.media-js') @endsection