@extends('admin/layout') @section('content')
{{ $error }}
Parent ---- No Parent ---- @foreach($parents as $parent) @if(Request::old('parent_id')==$parent->id) {{$parent->team_name}} @else {{$parent->team_name}} @endif @endforeach
Team Name
Team Type @foreach($teamTypes as $key => $teamType) {{ $teamType->team_type}} @endforeach
Team Lead ---- SELECT ---- @foreach($teamLeads as $teamLead) @if(Request::old('team_lead')==$teamLead->id) {{$teamLead->getFullNameAttribute()}} @else {{$teamLead->getFullNameAttribute()}} @endif @endforeach
Status ---- Select Status ---- @foreach(['active','inactive'] as $status) @if(Request::old('status')==$status) {{$status}} @else {{$status}} @endif @endforeach
Members ---- No Members ----