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

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

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

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

{!! $show['show_time'] !!}

{!! $show['show_day'] !!}

{!! $show['logo'] !!}

{!! $show['images'] !!}

{!! $show['cast'] !!}

{!! $show['details'] !!}

{!! $show['slider'] !!}

{!! $show['slug'] !!}

{!! $show['status'] !!}

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

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

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

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

{!! $show['deleted_at'] !!}
{!! Form::text('name') -> label(trans('show::show.label.name')) -> placeholder(trans('show::show.placeholder.name'))!!}
{!! Form::textarea('description') -> label(trans('show::show.label.description')) -> dataUpload(trans_url($show->getUploadURL('description'))) -> addClass('html-editor') -> placeholder(trans('show::show.placeholder.description'))!!}
{!! Form::text('show_time') -> placeholder(trans('show::show.placeholder.show_time')) -> raw()!!}
{!! Form::text('show_day') -> label(trans('show::show.label.show_day')) -> placeholder(trans('show::show.placeholder.show_day'))!!}
{!! $show->files('image') ->url($show->getUploadUrl('image')) ->mime(config('filer.image_extensions')) ->dropzone()!!}
{!! $show->files('image') ->editor()!!}
{!! $show->files('images', 10) ->mime(config('filer.image_extensions')) ->url($show->getUploadUrl('images')) ->dropzone()!!}
{!! $show->files('images') ->editor()!!}
{!! Form::text('cast') -> label(trans('show::show.label.cast')) -> placeholder(trans('show::show.placeholder.cast'))!!}
{!! Form::textarea('details') -> label(trans('show::show.label.details')) -> dataUpload(trans_url($show->getUploadURL('details'))) -> addClass('html-editor') -> placeholder(trans('show::show.placeholder.details'))!!}
{!! Form::select('slider') -> options(trans('show::show.options.slider')) -> label(trans('show::show.label.slider')) -> placeholder(trans('show::show.placeholder.slider'))!!}
{!! Form::select('status') -> options(trans('show::show.options.status')) -> label(trans('show::show.label.status')) -> placeholder(trans('show::show.placeholder.status'))!!}