@extends('layouts.app', ['title' => __('Restaurant Management')]) @section('content') @include('restorants.partials.header', ['title' => __('Add Restaurant')])

{{ __('Restaurant Management') }}

{{ __('Restaurant information') }}
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif

{{ __('Owner information') }}
@if ($errors->has('name_owner')) {{ $errors->first('name_owner') }} @endif
@if ($errors->has('email_owner')) {{ $errors->first('email_owner') }} @endif
@if ($errors->has('phone_owner')) {{ $errors->first('phone_owner') }} @endif
@include('layouts.footers.auth')
@endsection