{!! TranslatableBootForm::hidden('status')->value(0) !!}
{!! TranslatableBootForm::checkbox(__('Published'), 'status') !!}
{!! BootForm::hidden('international')->value(0) !!}
{!! BootForm::checkbox(__('International'), 'international') !!}
{!! BootForm::select(__('Parent Chapter (if you want to make sub-chapter then choose chapter here)'), 'parent_id')->options([''=>'Select']+TypiCMS\Modules\Chapters\Models\Chapter::published()->pluck('title','id')->toArray())->selected(!!$model->id ? $model->parent_id : '') !!}
@if (is_array($model->staffs))
@if ($model->staffs)
@foreach ($model->staffs as $staff)
@endforeach
@else
@endif
@endif