{{ Form::label('title', getphrase('title')) }} * {{ Form::text('title', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('title'), 'ng-model'=>'title', 'ng-pattern' => getRegexPattern("name"), 'required'=> 'true', 'ng-class'=>'{"has-error": formSettings.title.$touched && formSettings.title.$invalid}', ))}}
{!! getValidationMessage()!!} {!! getValidationMessage('pattern')!!}
{{ Form::label('key', getphrase('key')) }} * {{ Form::text('key', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('Introduction'), 'ng-model'=>'key', 'ng-pattern' => getRegexPattern("name"), 'required'=> 'true', 'ng-class'=>'{"has-error": formSettings.key.$touched && formSettings.key.$invalid}', ))}}
{!! getValidationMessage()!!} {!! getValidationMessage('pattern')!!}
{{ Form::label('image', getphrase('image')) }}
{!! Form::file('image', null, array('class'=>'form-control')) !!}
{{ Form::label('description', getphrase('description')) }} {{ Form::textarea('description', $value = null , $attributes = array('class'=>'form-control', 'rows'=>'5', 'placeholder' => getphrase('description_of_the_topic'))) }}