@extends('backend.admin-master') @section('style') @endsection @section('site-title') {{__('All Users')}} @endsection @section('content')
@include('backend/partials/message') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif

{{__('All Users')}}

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