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

{{ __('team') }}

{{ __('Edit Team') }}

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

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

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

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

@endif

{{ __('Upload 70X70 (Pixel) Size image for best quality. Only jpg, jpeg, png image is allowed.') }}

@if ($errors->has('name'))

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

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

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

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

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

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

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

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

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

@endif


@if ($errors->has('icon2'))

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

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

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

@endif


@if ($errors->has('icon3'))

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

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

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

@endif


@if ($errors->has('icon4'))

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

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

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

@endif


@if ($errors->has('icon5'))

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

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

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

@endif


@if ($errors->has('serial_number'))

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

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

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

@endif
@endsection