@foreach($website_navs as $website_nav)
{{ Form::label_title($website_nav->display_name, \App\Helpers\FormComponentHelper::SIZE_LARGE) }}
@if ($website_nav->notes)
{{ Form::label_title($website_nav->notes, \App\Helpers\FormComponentHelper::SIZE_LARGE) }}
@endif
@foreach($website_nav->get_top_level_modules() as $top_module)
-
@include('website._navigation_card', ['website_nav_module' => $top_module])
@if($top_module->has_children())
@include('website._navigation_card_children', ['children' => $top_module->get_children()])
@endif
@endforeach
@if ($can_edit)
{{ Form::button_link('Edit', str_replace('XXX', $website_nav->website_nav, $edit_url)) }}
@endif
@if(!$loop->last)
{{ Form::separator_row_bottom("grey-divider") }}
@endif