@extends('layouts.admin') @section('content') @push('css') @endpush
Team List
Back
Clear
@if(count($teams)>0) @foreach($teams as $key => $team) @endforeach @endif
SL. Parent Team Name Member Action
{{ $team->id }} {{ $team->parent_data->name }} {{ $team->name }} {{ $team->team_user_count }}
{{ csrf_field() }}
@if($edit)
Edit Team
@csrf
@if ($errors->has('parent_team_id')) {{ $errors->first('parent_team_id') }} @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
Cancel
@else
Team Add
@csrf
@if ($errors->has('parent_team_id')) {{ $errors->first('parent_team_id') }} @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@endif
@push('alljs') @endpush @endsection