@extends('layouts.master') @section('title',__('Create Home Block')) @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Create Home Block')}}
{!! Form::open(['method' => 'POST', 'action' => 'HomeBlockController@store', 'files' => true]) !!}
{{__('Promotion Settings Block Type')}}
{!! Form::checkbox('', 1, 1, ['class' => 'bootswitch', 'id' => 'TheCheckBox', "data-on-text"=>"Movies", "data-off-text"=>"Tv Series", "data-size"=>"small"]) !!}
{{ $errors->first('home_block') }}
{!! Form::label('movie_id', __('Select Promotion Settings Block For Movie')) !!} {!! Form::select('movie_id', $movie_list, null, ['class' => 'form-control select2', 'placeholder' => '']) !!} {{ $errors->first('movie_id') }}
{!! Form::label('tv_series_id', __('Select Promotion Settings Block For Tv Show')) !!} {!! Form::select('tv_series_id', $tv_series_list, null, ['class' => 'form-control select2', 'placeholder' => '']) !!} {{ $errors->first('tv_series_id') }}
{!! Form::label('is_active', __('Active')) !!}
{{ $errors->first('series') }}
{!! Form::close() !!}
@endsection @section('script') @endsection