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

{{$page_title}} Add item

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