@extends('layouts/app') @section('css') @stop @section('content')
@if(Session::has('message'))
Success!
{{ Session::get('message') }} @php Session::forget('message'); @endphp
@endif @if(Session::has('error'))
Errors!
@foreach(Session::get('error') as $err) {{ $err }}
@endforeach @php Session::forget('error'); @endphp
@endif
@if(!empty($users)) @foreach($users as $user) @endforeach
Username Name Email
@else

No data found

@endif
@csrf
@endsection