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

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

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

{!! $channel['video_id'] !!}

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

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

{!! $channel['stream_type'] !!}

{!! $channel['transcoding_profile'] !!}

{!! $channel['input_type'] !!}

{!! $channel['output_type'] !!}

{!! $channel['input_name'] !!}

{!! $channel['live_dvr'] !!}

{!! $channel['recording'] !!}

{!! $channel['ad_markers'] !!}

{!! $channel['meta_data'] !!}

{!! $channel['meta_description'] !!}

{!! $channel['meta_tags'] !!}

{!! $channel['thumbnail'] !!}

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

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

{!! $channel['deleted_at'] !!}
{!! Form::numeric('video_id') -> label(trans('channel::channel.label.video_id')) -> placeholder(trans('channel::channel.placeholder.video_id'))!!}
{!! Form::text('name') -> label(trans('channel::channel.label.name')) -> placeholder(trans('channel::channel.placeholder.name'))!!}
{!! Form::text('description') -> label(trans('channel::channel.label.description')) -> placeholder(trans('channel::channel.placeholder.description'))!!}
{!! Form::select('stream_type') -> options(trans('channel::channel.options.stream_type')) -> label(trans('channel::channel.label.stream_type')) -> placeholder(trans('channel::channel.placeholder.stream_type'))!!}
{!! Form::text('transcoding_profile') -> label(trans('channel::channel.label.transcoding_profile')) -> placeholder(trans('channel::channel.placeholder.transcoding_profile'))!!}
{!! Form::select('input_type') -> options(trans('channel::channel.options.input_type')) -> label(trans('channel::channel.label.input_type')) -> placeholder(trans('channel::channel.placeholder.input_type'))!!}
{!! Form::select('output_type') -> options(trans('channel::channel.options.output_type')) -> label(trans('channel::channel.label.output_type')) -> placeholder(trans('channel::channel.placeholder.output_type'))!!}
{!! Form::text('input_name') -> label(trans('channel::channel.label.input_name')) -> placeholder(trans('channel::channel.placeholder.input_name'))!!}
{!! Form::select('live_dvr') -> options(trans('channel::channel.options.live_dvr')) -> label(trans('channel::channel.label.live_dvr')) -> placeholder(trans('channel::channel.placeholder.live_dvr'))!!}
{!! Form::select('recording') -> options(trans('channel::channel.options.recording')) -> label(trans('channel::channel.label.recording')) -> placeholder(trans('channel::channel.placeholder.recording'))!!}
{!! Form::select('ad_markers') -> options(trans('channel::channel.options.ad_markers')) -> label(trans('channel::channel.label.ad_markers')) -> placeholder(trans('channel::channel.placeholder.ad_markers'))!!}
{!! Form::text('meta_data') -> label(trans('channel::channel.label.meta_data')) -> placeholder(trans('channel::channel.placeholder.meta_data'))!!}
{!! Form::text('meta_description') -> label(trans('channel::channel.label.meta_description')) -> placeholder(trans('channel::channel.placeholder.meta_description'))!!}
{!! Form::text('meta_tags') -> label(trans('channel::channel.label.meta_tags')) -> placeholder(trans('channel::channel.placeholder.meta_tags'))!!}
{!! $channel->files('image') ->url($channel->getUploadUrl('image')) ->mime(config('filer.image_extensions')) ->dropzone()!!}
{!! $channel->files('image') ->editor()!!}