<?php

use yii\bootstrap4\Html;

/* @var $this yii\web\View */
/* @var $model backend\models\ars\TakingSite */

$this->title = '创建自提点';
$this->params['breadcrumbs'][] = ['label' => '上门自提', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="taking-site-create">

    <?= $this->render('_form', [
        'model' => $model,
        'cityList'=>[],
        'areaList'=>[]
    ]) ?>

</div>