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

{{__('All Admin Created By Super Admin')}}

@foreach($all_user as $data) @endforeach
{{__('ID')}} {{__('Name')}} {{__('Username')}} {{__('Image')}} {{__('Role')}} {{__('Email')}} {{__('Action')}}
{{$data->id}} {{$data->name}} {{$data->username}} @php $img_url =''; $author_img = get_attachment_image_by_id($data->image,null,true); @endphp @if (!empty($author_img))
@php $img_url = $author_img['img_url']; @endphp @endif
{{get_user_role_name_by_id($data->role)}} {{$data->email}} {{__("Change Password")}}
@include('backend.partials.media-upload.media-upload-markup') @endsection @section('script') @include('backend.partials.media-upload.media-js') @endsection