{{ Form::label('category', getphrase('category_name')) }} * {{ Form::text('category', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('enter_category_name'), 'ng-model'=>'category', 'required'=> 'true', 'ng-pattern' => getRegexPattern("name"), 'ng-minlength' => '2', 'ng-maxlength' => '60', 'ng-class'=>'{"has-error": formLms.category.$touched && formLms.category.$invalid}', )) }}
{!! getValidationMessage()!!} {!! getValidationMessage('minlength')!!} {!! getValidationMessage('maxlength')!!} {!! getValidationMessage('pattern')!!}
{{ Form::label('category', getphrase('image')) }}
@if($record) @if($record->image) @endif @endif
{{ Form::label('description', getphrase('description')) }} {{ Form::textarea('description', $value = null , $attributes = array('class'=>'form-control', 'rows'=>'5', 'placeholder' => 'Description')) }}