@extends('layouts.app') @section('title') @lang('dashboard.all_users') @endsection @section('vendor_css') @endsection @section('page_level_css') @endsection @section('content')
@foreach ($users as $user) @endforeach
@lang('dashboard.full_name') @lang('dashboard.user_name') @lang('dashboard.email') @lang('dashboard.type') @lang('dashboard.options')
{{ $user->name }} {{ $user->username }} {{ $user->email }} @switch($user->type) @case(0) @lang('dashboard.super_admin') @break @case(1) @lang('dashboard.admin') @break @case(2) @lang('dashboard.doctor') @break @case(3) لوحة القيادة @break @case(4) مراقب @break @endswitch
id != Auth::user()->id) onclick="change_active('{{ $user->id }}');" @else onclick="alert('لا يمكنك تفعيل / الغاء تفعيل حسابك');" @endif > {{method_field('DELETE')}} {{ csrf_field() }}
@lang('dashboard.name') @lang('dashboard.user_name') @lang('dashboard.email') @lang('dashboard.type') @lang('dashboard.options')
@endsection @section('page_vendor_js') @endsection @section('page_level_js') @endsection