@extends('layouts.master') @section('title',"Edit $tvseries->title") @section('breadcum') @endsection @section('maincontent')
{{ __('Back') }}
{{__('Edit Tv Series')}}
{!! Form::model($tvseries, ['method' => 'PATCH', 'action' => ['TvSeriesController@update',$tvseries->id], 'files' => true]) !!}
{!! Form::label('title', __('Series Title')) !!} {!! Form::text('title', null, ['class' => 'form-control']) !!} {{ $errors->first('title') }}
{{-- Allage Maturity --}}
{!! Form::label('maturity_rating',__('Maturity Rating')) !!} {!! Form::select('maturity_rating', array('all age' =>__('All Age'), '18+' =>'18+', '16+' => '16+', '13+'=>'13+','10+' =>'10+', '8+' => '8+', '5+'=>'5+','2+'=>'2+'), null, ['class' => 'form-control select2']) !!} {{ $errors->first('maturity_rating') }}
({{ __('Select those countries where you want to block Movies')}} )
{!! Form::label('is_custom_label',__('Allow Custom Label ?')) !!}
{{ $errors->first('is_custom_label') }}
{!! Form::label('label_id', __('Custom Label')) !!} {{ $errors->first('label_id') }}
{!! Form::label('featured', __('Featured')) !!}
{{ $errors->first('featured') }}
@if($button->kids_mode==1)
{!! Form::label('is_kids', __('Only for kids ?')) !!}
{{ $errors->first('is_kids') }}
@endif
{!! Form::label('', __('Choose Custom Thumbnail And Poster')) !!}
{{ $errors->first('subtitle') }}
{{--
--}}
@if(isset($tvseries->thumbnail) && $tvseries->thumbnail != NULL) @else @endif
@if(isset($tvseries->poster) && $tvseries->poster != NULL) @else @endif
{{--
--}}
{{__('Want TMDB Data And More Or Custom')}}?
tmdb == 'Y' ? 'checked' : ''}}/> tmdb != 'Y' ? 'checked' : ''}}/>
{!! Form::label('genre_id', __('Genre')) !!}
{{ $errors->first('genre_id') }}
{!! Form::label('rating', __('Ratings')) !!} {!! Form::text('rating', null, ['class' => 'form-control']) !!} {{ $errors->first('rating') }}
{!! Form::label('detail', __('Description')) !!} {!! Form::textarea('detail', null, ['class' => 'form-control materialize-textarea', 'rows' => '5']) !!} {{ $errors->first('detail') }}
{!! Form::close() !!}
@endsection @section('script') @endsection