@extends('layouts.app') {{-- Customize layout sections --}} @section('subtitle', 'USERS') @section('content_header_title', 'USERS') @section('content_header_subtitle', 'LIST') {{-- Content body: main page content --}} @section('content_body') @can('user create')
NEW
@endcan

USER LIST

{{html()->form('GET', route('role.index'))->open()}}
{{html()->text('search')->value($search)->class('form-control')->placeholder('Search')}}
{{html()->form()->close()}}
@foreach($users as $user) @endforeach
NAME EMAIL ACTIONS
{{$user->name}} {{$user->email}} @can('user edit') @endcan @can('user delete') @endcan
@stop {{-- Push extra CSS --}} @push('css') {{-- Add here extra stylesheets --}} @endpush {{-- Push extra scripts --}} @push('js') @endpush