@extends('layouts.app') @section('page-title', __('Distribute Assets')) @section('page-heading', __('Distribute Assets')) @section('breadcrumbs') @stop @section('content') @include('partials.messages')
@if (request()->has('search') && request('search') != '') @endif
@if ($users->count()) @foreach ($users as $user) @endforeach @else @endif
@lang('Name') @lang('Email') @lang('Role') @lang('Actions')
{{ $user->name }} {{ $user->email }} {{ $user->role->display_name }} @lang('Distribute')
@lang('No records found.')
{{ $users->links() }} @stop