@extends('layouts.admin') @section('title'){{ __('Update') }} {{__('Index')}} @endsection @section('content') @include('includes.page_header',['title'=>__('Update')." ".__('Index'),'url'=>route('admin.indices.index'),'icon' => $icon??'','permission'=>'Index-view'])
{!! Form::model($index, ['route' => ['admin.indices.update', $index->id], 'method' => 'patch', 'files' => true]) !!} @include('admin.indices.fields') {!! Form::close() !!}
@endsection