@extends('layouts.app') {{-- Include the layout --}} @section('content')
Manage Users
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @if (isset($error_message))
{{ isset($error_message) ? $error_message : '' }}
@endif
@csrf
Please enter the Username.
Please enter the Name.
Please enter the Password.
Please enter the Confirm Password.
@php $count=0; @endphp @foreach($menulist as $list) @endforeach
Menu Rights
Sr. ID Label Action       
{{++$count}} {{ $list->id }} {{ $list->label }}



Users List
@php $count=0; @endphp @foreach($userslist as $list) @endforeach
Sr. ID Username Name Email Edit Delete
{{++$count}} {{ $list->id }} {{ $list->username }} {{ $list->name }} {{ $list->email }}
@endsection