@extends('layouts.admin') @section('content')
@include('layouts.errors')
@foreach($teams as $key => $team) @endforeach
# First Name Last Name Email Actions
{{ $key + 1 }} {{ $team->first_name }} {{ $team->last_name }} {{ $team->email }} Edit
@csrf @method('DELETE')
@endsection