@if(!empty($article_list))
    <div class="d-flex buyer-page">
        @if(isset($bottom))
            <label for="" class="btn-action-buyer mr-3 mb-0 label-buyer-all u-checkbox position-relative">
        @else
            <label for="cb-all" class="btn-action-buyer mr-3 mb-0 u-checkbox position-relative">
        @endif
                <input type="checkbox" value="" name="" class="mr-1 checkbox-buyer checkbox-buyer-all u-checkbox__obj" id="cb-all">
                <span class="u-checkbox__text" style="top: -9px"></span>
                <span>すべてチェックする</span>
            </label>
        <div class="btn-action-buyer open-modal-article btn-create-buyer position-relative">
            <img src="{{ asset('business/img/icon_keep_green.png') }}" alt="" class="mr-1">
            <span>チェックした物件を保存</span>
            @if(!session('buyer_active'))
                <div action="{{ route('buyer.store') }}" class="frm-buyer frm-create-buyer d-none" method="post">
                    @csrf
                    <div>
                        <div class="head d-flex align-items-center justify-content-between px-4 py-2">
                            <div>新規リスト作成</div>
                            <div class="close-b close-c pointer"></div>
                        </div>
                        <div class="my-4">
                            <div class="flex-center">
                                <input type="text" name="name" value="" class="btn-action" placeholder="新規リスト名入力">
                                <button class="btn-action dark pointer ajax-create-buyer">設定</button>
                            </div>
                            <span class="px-4 error-name text-danger"></span>
                        </div>
                    </div>
                </div>
            @endif
        </div>
    </div>
@endif
