@extends('admin.layouts.admin') @section('title') Admin | Edit Google Restaurant @endsection @section('styles') @endsection @section('content')

Edit Google Restaurant

@csrf
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Restaurant Details

@if ($errors->has('restaurant_name')) @endif
@if ($errors->has('address')) @endif
@if ($errors->has('zip_code')) @endif

Restaurant Owner Details

@if ($errors->has('user_name')) @endif
@if ($errors->has('user_email')) @endif
@if ($errors->has('user_address')) @endif
@endsection @section('scripts') @endsection