@extends('layouts.master') @section('title',__('Player Settings')) @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Player Settings')}}
{!! Form::model($ps, ['method' => 'POST', 'action' => ['PlayerSettingController@update', $ps->id], 'files' => true]) !!}
{!! Form::label('logo_enable', __('Logo Enable:')) !!}
{{ $errors->first('logo_enable') }}
{!! Form::label('logo', __('Logo')) !!} -

{{__('Help Block Text')}}

{!! Form::file('logo', ['class' => 'input-file', 'id'=>'logo']) !!} {{ $errors->first('logo') }}
{!! Form::label('cpy_text', __('CopyrightText')) !!} {!! Form::text('cpy_text', null, ['class' => 'form-control', 'required' => 'required',]) !!} {{ $errors->first('cpy_text') }}
{!! Form::label('share_opt', __('Share Option:')) !!}
{{ $errors->first('share_opt') }}
{!! Form::label('auto_play',__('Auto Play:')) !!}
{{ $errors->first('speed') }}
{!! Form::label('speed', __('Speed Options:')) !!}
{{ $errors->first('speed') }}
{!! Form::label('info_window', __('Info-WindowOption:')) !!}
{{ $errors->first('info_window') }}
{!! Form::label('skin', __('Player Select Skin:')) !!}
{{ $errors->first('skin') }}
{!! Form::label('loop_video', __('Loop-VideoOption:')) !!}
{{ $errors->first('loop_video') }}
{!! Form::label('chromecast', __('Chrome Cast:')) !!}
{{ $errors->first('chromecast') }}
{!! Form::label('is_resume', __('Resume/Playback Option:')) !!}
{{ $errors->first('is_resume') }}
{!! Form::label('player_google_analytics_id', __('Google Analytics Id')) !!} {!! Form::text('player_google_analytics_id', null,['class' => 'form-control']) !!} {{ $errors->first('player_google_analytics_id') }}
{!! Form::label('subtitle_font_size', __('Subtitle Font Size')) !!} {!! Form::number('subtitle_font_size', null, ['class' => 'form-control','max'=>'100','min'=>'2']) !!} {{ $errors->first('subtitle_font_size') }}
{!! Form::label('subtitle_color',__('Subtitle Color')) !!} {!! Form::color('subtitle_color', null, ['class' => 'form-control',]) !!} {{ $errors->first('subtitle_color') }}
{!! Form::close() !!}
@endsection @section('script') @endsection