@extends('cfp.layouts.master') @section('css') @endsection @section('content')

{{ __("cfp.EditProduct") }}: {{ $product->SRL }}

@include('cfp.components.error_alert')
PID) }}"> @csrf @method("PUT") @include("cfp.components.form-group", [ "label" => "Name of Product", "name" => "name", "value" => $product->NAME, "placeholder" => "Name of Product ..." ]) @include("cfp.components.form-group", [ "label" => "Description of Product", "name" => "description", "value" => $product->DESCRIPTION, "placeholder" => "Short Description ..." ]) @include("cfp.components.form-group", [ "label" => "Amount of ZP", "name" => "ammount", "value" => $product->ZP_AMMOUNT, "placeholder" => "Amount ...", "type" => "number", "minNum" => 1, "maxNum" => 999999 ]) @include("cfp.components.form-group", [ "label" => "Price", "name" => "price", "value" => $product->PRICE, "placeholder" => "Price of product ...", "extra_cls" => "money" ]) @include('cfp.components.form-group', ["control" => "button", "value" => "Update Product"])
@endsection @section('js') @endsection