{!! Form::label('name', trans('lang.name'), ['class' => 'col-3 control-label text-right']) !!}
{!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => trans('lang.name_placeholder'),'required' => 'required']) !!}
{{ trans('lang.name_help') }}
{!! Form::label('status', trans('lang.status'), ['class' => 'col-3 control-label text-right']) !!}
{!! Form::label(null, null, ['class' => 'col-2 control-label text-right']) !!}
{!! Form::file('video', ['class' => 'dropify','accept'=>"video/mp4,video/x-m4v,video/*", 'data-default-file' => isset($video) && $video->getMedia('videos')->count() > 0 ? $video->getFirstMediaUrl('videos') : '']) !!}
{{ trans('lang.video_file_help') }}
{!! Form::file('image', ['class' => 'dropify','accept'=>"image/*", 'data-default-file' => isset($video) && $video->getMedia('images')->count() > 0 ? $video->getFirstMediaUrl('images') : '']) !!}
{{ trans('lang.image_file_help') }}
{!! Form::label(null, null, ['class' => 'col-2 control-label text-right']) !!}
{{ trans('lang.cancel') }}
@section('page-styles') {{-- dropify --}} @stop @section('vendor-script') {{-- dropify --}} @stop @section('page-script') {{-- --}} {{-- dropify --}} @stop