@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', ], ])
@csrf
1. {{ __('messages.Basic information') }}
@error('name')
{{ $message }}
@enderror
@error('mobile')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@endsection @section('script') @include('inc.script_submit') @endsection