@extends('layouts.backend.app') @section('content')

{{ __('Edit product') }}

@csrf @method('PUT')
@php $arr['title']= 'Product Name'; $arr['id']= 'name'; $arr['type']= 'text'; $arr['placeholder']= 'Product Title'; $arr['name']= 'title'; $arr['value']= $info->title; $arr['is_required'] = true; echo input($arr); @endphp
@php $arr['title']= 'Excerpt'; $arr['id']= 'excerpt'; $arr['placeholder']= 'short description'; $arr['name']= 'excerpt'; $arr['is_required'] = true; $arr['value']= $info->excerpt->content; echo textarea($arr); @endphp
{{ __('Publish') }}

{{ __('Status') }}

{{ __('Categories') }}

@php $catArr=[]; foreach ($info->postcategory as $row) { array_push($catArr, $row->category_id); } @endphp
Fatal error: Uncaught Error: Call to undefined function AdminCategoryUpdate() in /var/www/html/repo/multi-resturant-food-ordering-restaurant-management-with-saas32/update/v3.2/edit.blade.php:92 Stack trace: #0 {main} thrown in /var/www/html/repo/multi-resturant-food-ordering-restaurant-management-with-saas32/update/v3.2/edit.blade.php on line 92