@extends('cms.application') @section('stylesheets') @stop @section('content')
Create Important Links
{!! Form::open(['route' => 'cms.important_links.index']) !!} @include('cms.important_links._form', ['submitButton' => "Save"]) {!! Form::close() !!}
List Of Important Links
@if($links->count() == 0)
@else
    {!! recursiveLinksMenu('0','ImportantLink') !!}
@foreach($links as $key => $link) @endforeach @endif
@stop @section('scripts') @stop