{{ 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('date')) }} *
{{ Form::text('date', $value = null , $attributes = array( 'class' =>'form-control', 'placeholder' => '2015-07-17', 'id' =>'dp', )) }}
{{ Form::label('short description', getphrase('Short description')) }} * {{ Form::textarea('short_description', $value = null , $attributes = array('class'=>'form-control', 'rows'=>'3', 'placeholder' => getPhrase('short_description'))) }} Please enter word limit 250
{{ Form::label('description', getphrase('description')) }} * {{ Form::textarea('description', $value = null , $attributes = array('class'=>'form-control ckeditor', 'rows'=>'5', 'placeholder' => getPhrase('description'))) }}
{{ Form::label('image', getphrase('image')) }}
@if($record && $record->image)

@elseif( $record && !$record->image )

@endif