@extends('layouts.dash') @section('content')

Assigned Team

Selected
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @foreach($teams as $team) @endforeach
Name Email Phone Number
{{ $team->name }} {{ $team->email }} {{ $team->phone }}
@endsection