@php
$ad_conf = [
    ['code' => 0, 'name' => ''],
    ['code' => 1, 'name' => '未'],
    ['code' => 2, 'name' => '可'],
    ['code' => 3, 'name' => '不可'],
];
@endphp
@extends('admin.layouts.base')

@section('contents')

<div class="mt5">
    @include('admin.objects.components.vendor-tab', ['title' => '業者管理'])
    @include('admin.objects.components.regist-band', ['title' => '業者登録'])
    <div class="regist_vendor">
        <form method="POST" action="{{ route('vendor-regist') }}" id="enter-off">
        {{ csrf_field() }}
            <div class="mb10 input_vendor">
                <table border="1" class="">
                    <tr>
                        <th class="w100">業者番号</th>
                        <td colspan="3"></td>
                    </tr>
                    <tr>
                        <th>業者名</th>
                        <td colspan="3">
                            @include('admin.objects.components.input', ['name' => 'name', 'class' => 'w500', 'placeholder' => '業者名を入力'])
                        </td>
                    </tr>
                    <tr>
                        <th>業者名（カタカナ）</th>
                        <td colspan="3">
                            @include('admin.objects.components.input', ['name' => 'name_kana', 'class' => 'w500', 'placeholder' => '業者名（カタカナ）を入力'])
                        </td>
                    </tr>
                    <tr>
                        <th>電話番号</th>
                        <td colspan="3">
                            @include('admin.objects.components.input', ['name' => 'vendor_tel1', 'class' => 'w250', 'placeholder' => '000-000-0000'])
                            @include('admin.objects.components.input', ['name' => 'vendor_tel2', 'class' => 'w250', 'placeholder' => '000-000-0000'])
                        </td>
                    </tr>
                    <tr>
                        <th>FAX番号</th>
                        <td>
                            @include('admin.objects.components.input', ['name' => 'vendor_fax', 'class' => 'w250', 'placeholder' => '000-000-0000'])
                        </td>
                        <th>メールアドレス</th>
                        <td>
                            @include('admin.objects.components.input', ['name' => 'vendor_mail', 'class' => 'w250', 'placeholder' => '000@0000'])
                        </td>
                    </tr>
                    <tr>
                        <th>住所</th>
                        <td colspan="3">
                            <div>
                                &#12306;@include('admin.objects.components.input', ['name' => 'zip', 'class' => 'mb-2', 'placeholder' => '000-0000'])
                                {{--@include('admin.objects.components.btn', ['title' => '郵便番号から住所決定', 'class' => 'btn_decision', 'id'=>'zipToAddress'])--}}
                                {{--@include('admin.objects.components.btn', ['title' => '住所から郵便番号決定', 'class' => 'btn_decision', 'id' => 'addressToZip'])--}}
                            </div>
                            <div>
                                {{--@include('admin.objects.components.selectbox', ['name' => 'address1', 'class' => 'mb-2', 'options' => $pref, 'title' => '都道府県', 'selected' => Config::get('const.DEFAULT_PREF')])--}}
                                {{--@include('admin.objects.components.selectbox', ['name' => 'address2', 'class' => 'mb-2', 'options' => $city, 'title' => '市区郡'])--}}
                                {{--@include('admin.objects.components.selectbox', ['name' => 'address3', 'class' => 'mb-2', 'options' => $town, 'title' => '町村'])--}}
                            </div>
                            <div>
                                @include('admin.objects.components.input', ['name' => 'address4', 'class' => 'w-50', 'placeholder' => '住所を入力'])
                            </div>
                        </td>
                    </tr>
                    <tr>
                        <th>ホームページ</th>
                        <td colspan="3">
                            @include('admin.objects.components.input', ['name' => 'vendor_url', 'class' => 'w500', 'placeholder' => 'https://'])
                        </td>
                    </tr>
                    <tr>
                        <th>営業時間</th>
                        <td>
                            @include('admin.objects.components.input', ['name' => 'vendor_time', 'class' => 'w250', 'placeholder' => '00:00〜00:00'])
                        </td>
                        <th>定休日</th>
                        <td>
                            @include('admin.objects.components.input', ['name' => 'vendor_holiday', 'class' => 'w250', 'placeholder' => '曜日'])
                        </td>
                    </tr>
                </table>
            </div>
            <div class="search_vendor__btn">
                @include('admin.objects.components.regist-btn', ['class' => '', 'title' => '登録・保存'])
            </div>
        </form>


    </div>
</div>
@endsection
