@extends('layouts.admin') @section('content')
@include('layouts.partials.messages')
{!! Form::open(['route' => 'menu.index', 'method' => 'GET', 'class' => 'filter_form col-md-12']) !!}
{!! Form::label('menu_for', __('menu.menu_for')) !!} {!! Form::select('menu_for', menuFor('', true), isset($_GET['menu_for']) ? $_GET['menu_for'] : '', ['class' => 'form-control select2']) !!}
{!! Form::label('route_type', __('menu.route_type')) !!} {!! Form::select('route_type', routeType('', true), isset($_GET['route_type']) ? $_GET['route_type'] : '', ['class' => 'form-control select2']) !!}
{!! Form::submit('Search', ['class' => 'form-control btn btn-primary btn_sub width80']) !!}
{!! Form::close() !!}
{{ __('common.sr-no') }} {{ __('menu.image') }} {{ __('menu.menu_for') }} {{ __('menu.title') }} {{ __('menu.parent') }} {{ __('menu.route_type') }} {{ __('menu.is_nav_menu') }} {{ __('menu.route_name') }} {{ __('menu.status') }} {{ __('common.action') }}
@endsection