@extends('layouts.app')
@section('title')
{{ __('messages.Restaurants') }}
@endsection
@section('style')
@endsection
@section('content')
@include('inc.breadcrumb', [
'breadcrumb_items' => [
__('messages.Home') => route('home'),
__('messages.Restaurants') => route('admin.restaurants.index'),
__('messages.Create') => 'active',
],
])
@endsection
@section('script')
@include('inc.script_submit')
@endsection