@include('team::public.team.partial.header')
@include('team::public.team.partial.aside')
{{$team->title}}

{!! $team['id'] !!}

{!! $team['name'] !!}

{!! $team['designation'] !!}

{!! $team['description'] !!}

{!! $team['image'] !!}

{!! $team['link'] !!}

{!! $team['user_id'] !!}

{!! $team['user_type'] !!}

{!! $team['created_at'] !!}

{!! $team['updated_at'] !!}

{!! $team['deleted_at'] !!}
{!! Form::text('name') -> label(trans('team::team.label.name')) -> required() -> placeholder(trans('team::team.placeholder.name'))!!}
{!! Form::text('designation') -> label(trans('team::team.label.designation')) -> required() -> placeholder(trans('team::team.placeholder.designation'))!!}
{!! Form::text('description') -> label(trans('team::team.label.description')) -> placeholder(trans('team::team.placeholder.description'))!!}
{!! $team->files('image') ->url($team->getUploadUrl('image')) ->mime(config('filer.image_extensions')) ->dropzone()!!}
{!! $team->files('image') ->editor()!!}
{!! Form::text('link') -> label(trans('team::team.label.link')) -> placeholder(trans('team::team.placeholder.link'))!!}