@extends('layouts.app')
@section('content')
@include('layouts.navbars.auth.topnav', ['title' => 'User Management'])
Add User
| First Name |
Last Name |
Email |
Address |
State |
Action |
@foreach($ccws as $ccw)
| {{ $ccw->first_name }} |
{{ $ccw->last_name }} |
{{ $ccw->email }} |
{{ $ccw->address }} |
{{ $ccw->state }} |
Print
Edit
|
@endforeach
@endsection