@extends('layouts.side_bar') @section('content')

{{-- --}} User Management Dashboard
User Management Dashboard

Add New User

View All View Inactive Users

Inactive Users
{{-- --}} @foreach($user as $row) @if($row->status =="Inactive") {{-- --}} @endif @endforeach
SL Name Login Id Role Manager Team LeaderEmailACTION
{{ $row->id}} {{ $row->name}} {{ $row->login_name }} {{ $row->role}} {{ $row->manager}} {{ $row->team}}{{ $row->email}} Activate {{-- Reset_Password--}} {{-- Edit--}} {{-- @if($row->switch =="new")--}} {{-- START VOTE--}} {{-- @endif--}} {{-- @if($row->switch =="published")--}} {{-- VIEW RESULT--}} {{-- @endif--}} {{-- @if($row->switch =="hide")--}} {{-- VIEW RESULT--}} {{-- @endif--}} {{-- @if($row->switch =="hide")--}} {{-- UNHIDDEN--}} {{-- @endif--}}

{{-- --}}{{-- end--}} {{--
--}} {{-- --}} {{-- show lecturer--}} {{-- --}} {{-- --}} {{-- --}}
All Active Users
{{-- --}} @foreach($user as $row) @if($row->status =="Active") {{-- --}} @endif @endforeach
SL Name Login Id Role Manager Team LeaderEmailACTION
{{ $row->id}} {{ $row->name}} {{ $row->login_name }} {{ $row->role}} {{ $row->manager}} {{ $row->team}}{{ $row->email}} Deactivate Reset_Password Edit {{-- @if($row->switch =="new")--}} {{-- START VOTE--}} {{-- @endif--}} {{-- @if($row->switch =="published")--}} {{-- VIEW RESULT--}} {{-- @endif--}} {{-- @if($row->switch =="finished")--}} {{-- PUBLISH RESULT--}} {{-- @endif--}} {{-- @if($row->switch =="finished")--}} {{-- VIEW RESULT--}} {{-- @endif--}} {{-- @if($row->switch =="published")--}} {{-- UNDO PUBLISH--}} {{-- @endif--}}
@endsection