{{ Form::label('title', getphrase('title')) }} * {{ Form::text('title', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('title'), 'ng-model'=>'title', 'required'=> 'true', 'ng-class'=>'{"has-error": formLocations.title.$touched && formLocations.title.$invalid}', )) }}
{!! getValidationMessage()!!}
{{ Form::label('date', getphrase('From_date')) }} *
{{ Form::text('date', $value = null , $attributes = array( 'class' =>'form-control', 'placeholder' => '2019-01-7', 'id' =>'dp', )) }}
{{ Form::label('date', getphrase('To_date')) }} *
{{ Form::text('todate', $value = null , $attributes = array( 'class' =>'form-control', 'placeholder' => '2019-01-7', 'id' =>'tdp', )) }}
{{ Form::label('time', getphrase('time (24Hrs)')) }} {{ Form::text('time', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('15:00'), 'ng-model'=>'time', 'required'=> 'true', 'ng-class'=>'{"has-error": formLocations.time.$touched && formLocations.time.$invalid}', )) }}
{!! getValidationMessage()!!}
{{ Form::label('venue', getphrase('color_code')) }} * {{Form::select('color_code', $color, $selected, ['placeholder' => getPhrase('select_color'),'class'=>'form-control', 'ng-model'=>'color_code', 'id'=>'color_code', 'required'=> 'true', 'ng-class'=>'{"has-error": formLocations.color_code.$touched && formLocations.color_code.$invalid}' ])}}
{{ Form::label('venue', getphrase('venue')) }} {{ Form::text('venue', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('venue'), 'ng-model'=>'venue', 'required'=> 'true', 'ng-class'=>'{"has-error": formLocations.venue.$touched && formLocations.venue.$invalid}', )) }}
{!! getValidationMessage()!!}