@extends('layouts.app')
@section('content')
@include('layouts.navbars.auth.topnav', ['title' => 'User Management'])
Your Page Title
Add Users
@if (!$resultsFound)
No results found. Showing all users:
@endif
| Id |
name |
Email |
Action |
@foreach($users as $user)
| {{ $user->id }} |
{{ $user->username }} |
{{ $user->email }} |
|
@endforeach
@endsection