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

{{ __('Add New Addon Product') }}

@csrf
@php $arr['title']= 'Product Name'; $arr['id']= 'name'; $arr['type']= 'text'; $arr['placeholder']= 'Product Title'; $arr['name']= 'title'; $arr['is_required'] = true; echo input($arr); $arr['title']= 'Price'; $arr['id']= 'price'; $arr['type']= 'number'; $arr['placeholder']= 'Product Price'; $arr['name']= 'price'; $arr['is_required'] = true; echo input($arr); @endphp
{{ __('Publish') }}

{{ __('Status') }}

@endsection @section('script') @endsection