@if(checkRole(['owner']))
{{ Form::label('branch_id', getphrase('branch')) }} * {{Form::select('branch_id', $branches, null, ['class'=>'form-control', 'id'=>'branch_id', 'ng-model'=>'branch_id', 'required'=> 'true', 'ng-class'=>'{"has-error": formLms.branch_id.$touched && formLms.branch_id.$invalid}' ])}}
{!! getValidationMessage()!!}
@else {{ Form::hidden('branch_id', getUserRecord()->branch_id, array('id'=>'branch_id')) }} @endif
{{ 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', 'id'=>'category', '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','id'=>'description')) }}