@section('Dashboard')

users {!! __('Users') !!}

{!! __('Welcome to the Users Management Dashboard! Here, you can easily Create new Users to tailor the system to your needs. Simply navigate to the Create User section to get started.') !!}


@if($message = Session::get('Update'))
{{ $message }}
@endif @if($message = Session::get('store'))
{{ $message }}
@endif @if ($message = Session::get('delete'))
{{ $message }}
@endif
@foreach($Users as $User) @endforeach {{ $Users->links() }}
@include('layouts.footer')
@endsection