@extends('admin.layout.master') @section('style') @stop @section('body')

{{$page_title}} Add item

@if ($menus->count() > 0)
{{ Form::open(['route' => ['admin.manage-footer-menu.sort']]) }}
    @foreach($menus as $item)
  1. {{ $item->title }}
    Add link Manage Edit Delete @if($item->links->count() > 0) @foreach($item->links->sortBy('position') as $child)
    {{ $child->title }}
    @endforeach @endif
  2. @endforeach
{{ Form::button('Save', ['type' => 'submit', 'class' => 'btn btn-success']) }}
{{ Form::close() }}
@endif
@foreach($menus as $item) @endforeach @stop @section('script') @stop