@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": formlibraryvendors.branch_id.$touched && formlibraryvendors.branch_id.$invalid}' ])}}
{!! getValidationMessage()!!}
@else {{ Form::hidden('branch_id', getUserRecord()->branch_id, array('id'=>'branch_id')) }} @endif
{{ Form::label('library_vendor', getphrase('Library Vendor')) }} * {{ Form::text('library_vendor', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'Book bank', 'ng-model'=>'library_vendor', 'ng-pattern'=>getRegexPattern('name'), 'required'=> 'true', 'id'=>'library_vendor', 'ng-class'=>'{"has-error": formlibraryvendors.library_vendor.$touched && formlibraryvendors.library_vendor.$invalid}', 'ng-minlength' => '2', 'ng-maxlength' => '50', )) }}
{!! getValidationMessage()!!} {!! getValidationMessage('pattern')!!} {!! getValidationMessage('minlength')!!} {!! getValidationMessage('maxlength')!!}
{{ Form::label('description', getphrase('description')) }} {{ Form::textarea('description', $value = null , $attributes = array('class'=>'form-control', 'rows'=>'5', 'placeholder' => ' Description')) }}