{!! 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()!!}