@extends('layouts.master') @section('title',__('Create Live Event')) @section('breadcum') @endsection @section('maincontent')
{{ __('Back') }}
{{__('Create Live Event')}}
{!! Form::open(['method' => 'POST', 'action' => 'LiveEventController@store', 'files' => true]) !!}
{!! Form::label('title',__('Event Title')) !!} {!! Form::text('title', null, ['class' => 'form-control', 'placeholder' => __('Enter Live Event Title')]) !!} {{ $errors->first('title') }}
{!! Form::label('start_time', __('Event Start Time')) !!} {{ $errors->first('start_time') }}
{!! Form::label('end_time', __('Event End Time')) !!} {{-- {!! Form::datetime('end_time', null, ['class' => 'form-control', ]) !!} --}} {{ $errors->first('end_time') }}
{!! Form::label('organized_by', __('Event Organized By')) !!} {!! Form::text('organized_by', null, ['class' => 'form-control', ]) !!} {{ $errors->first('organized_by') }}
{{-- select to upload code start from here --}}
{!! Form::label('selecturls', __('Add Video')) !!} {!! Form::select('selecturl', array('iframeurl' =>__('IFrameURL'), 'customurl' => __('CustomURLAndM3u8URL')), null, ['class' => 'form-control select2','id'=>'selecturl']) !!} {{ $errors->first('selecturl') }}
{{-- custom /m3u8 --}}
{!! Form::label('description',__('Description')) !!} {!! Form::textarea('description', null, ['class' => 'form-control materialize-textarea', 'rows' => '5']) !!} {{ $errors->first('description') }}
{!! Form::label('',__('Choose Custom Thumbnail And Poster')) !!}
{{--
--}}
{{--
--}}
{!! Form::label('status', __('Status')) !!}
{{ $errors->first('status') }}
{!! Form::close() !!}
@endsection @section('script') @endsection