Invalid item selected.
@else
Cost: {!! $stock->currency->display($stock->cost) !!}
Stock: {{ $stock->quantity }}
@if ($stock->item->parsed_description)
This item will be paid for using your user account bank.
{!! Form::hidden('bank', 'user') !!}
{!! Form::submit('Purchase', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@else
You must be logged in to purchase this item.
@endif
@endif