@extends('home') @section('title') {{ __(ucfirst($section)) }} - {{ __('Edit') }} @endsection @section('styles') @endsection @section('content')
({{ __(ucfirst($section)) }}) {{ __('Update') }}
{!! Form::open(array('route' => ['MenuUpdate',$section,$navigation->id],'method' => 'put' ,'files' => true ,'class' => 'form-horizontal','id' => 'form-main')) !!}
@if (multLang()) @endif
@foreach (config('translatable.locales') as $lang => $language)
@endforeach

{{ Form::select('page_id', $pages, $navigation->page_id, ['id' => 'page_id', 'class' => 'form-control ','data-placeholder' => __('Select') ]) }}
publish) checked @endif data-on-text="" data-off-text="">
{!! Form::close() !!}
@foreach ($menus as $index => $item) @endforeach
{{ __('Title') }} {{ __('Status') }} {{ __('Action') }}
@if ($item->depth > 1) {!! str_repeat('-',$item->depth) !!} {{ $item->title }} @else {{ $item->title }} @endif {{ Form::open(['method' => 'DELETE', 'route' => ['MenuDestroy', $section,$item->id]]) }} {{ Form::close() }}
@endsection @section('scripts') @endsection