@extends('admin.layout') @section('content')

{{ __('Team') }}

{{ __('Section Content') }}

@csrf
@if ($errors->has('team_title'))

{{ $errors->first('team_title') }}

@endif
@if ($errors->has('team_sub_title'))

{{ $errors->first('team_sub_title') }}

@endif

{{ __('Team List') }}

{{ __('Add') }}
@foreach ($teams as $id=>$team) @endforeach
{{ __('#') }} {{ __('Image') }} {{ __('Name') }} {{ __('Dagenation') }} {{ __('Order') }} {{ __('status') }} {{ __('Action') }}
{{ $id }} {{ $team->name }} {{ $team->dagenation}} {{ $team->serial_number}} @if($team->status == 1) {{ __('Publish') }} @else {{ __('Unpublish') }} @endif {{ __('Edit') }}
@csrf
@endsection