@extends('layouts.app') @section('title', __('system.restaurants.update.menu', ['restaurant' => strtolower($restaurant->name)])) @section('content')

{{ __('system.restaurants.update.menu', ['restaurant' => strtolower($restaurant->name)]) }}

{{ Form::model($restaurant, ['route' => ['restaurant.restaurants.update', $restaurant->id], 'method' => 'put', 'files' => true, 'id' => 'pristine-valid']) }} @if (request()->query->has('back')) @endif @include('restaurant.restaurants.fields')
{{ __('system.crud.back') }}
{{ Form::close() }}
@endsection