@if(Session::has('success'))
{{ Session::get('success') }}
@endif
@if(Session::has('errors'))
{{ Session::get('errors') }}
@endif
| First Name |
Last Name |
Email |
|
@foreach($role as $key=>$val)
| {{ $val->first_name }} |
{{ $val->last_name }} |
{{ $val->email }} |
|
@endforeach