@extends('admin.layouts.app') @section('content')

{{ $section->title }}

{{-- @include('admin.components.alert') --}}
{!! Form::model($video, [ 'class' => 'form-validate', 'files' => true, 'enctype' => 'multipart/form-data', 'autocomplete' => 'off']) !!}
{!! Form::select('category_id[]',$category,string_convert_into_array($video->category_id), ['class' => ' form-control form-select select2','multiple'=>'multiple','disabled']) !!}
{!! Form::text('title', null, ['class' => 'form-control', 'placeholder' => 'Title Name', 'required' => 'required', 'id' => 'name','disabled']) !!}
{!! Form::text('actor_name', null, ['class' => 'form-control', 'placeholder' => 'Name', 'required' => 'required', 'id' => 'name','disabled']) !!}
{!! Form::text('price', null, ['class' => 'form-control', 'placeholder' => 'price', 'required' => 'required', 'id' => 'name','disabled']) !!}
{!! Form::file('banner', ['class' => 'custom-file-input', 'id' => 'customFile','disabled']) !!}
{!! Form::textarea('description', null, ['class' => 'form-control content ckeditor', 'placeholder' => 'description', 'required' => 'required', 'id' => 'name','disabled']) !!}
{!! Form::select('flag',['set_top_trending' => 'Top Trending','unset_top_trending' => 'Unset Top Trending'],null,['class' => 'form-control form-select select2','disabled','placeholder' => 'if you want to putt video in top trending']) !!}
{!! Form::select('recent_upload',['set_recent_upload' => 'Set Recent Upload','unset_recent_upload' => 'unset Recent Upload'],null,['class' => 'form-control form-select select2','disabled','placeholder' => 'if you want to putt video in top trending']) !!}
{!! Form::select('status', ['1' => 'Active', '0' => 'Inactive'], null, ['class' => 'form-control form-select select2','disabled' ]); !!}
{!! Form::close() !!}
@section('scripts') @endsection @endsection