@if($errors->any()) @endif
{{ Form::text('buyer_code',null,['class'=>'form-control','placeholder'=>'Buyer Code']) }} @if($errors->has('buyer_code')){{ $errors->first('buyer_code') }}@endif
{{ Form::text('name',null,['class'=>'form-control','placeholder'=>'Enter Name']) }} @if($errors->has('name')){{ $errors->first('name') }}@endif
{{ Form::text('email',null,['class'=>'form-control','placeholder'=>'Enter Email Address']) }} @if($errors->has('email')){{ $errors->first('email') }}@endif