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

{{ __("cfp.CreateProduct") }}

@include('cfp.components.error_alert')
@csrf @include("cfp.components.form-group", [ "label" => "Name of Product", "name" => "name", "value" => old("name"), "placeholder" => "Name of Product ..." ]) @include("cfp.components.form-group", [ "label" => "Product Description", "name" => "description", "value" => old("description"), "placeholder" => "Short description ..." ]) @include("cfp.components.form-group", [ "label" => "Amount of ZP", "name" => "ammount", "value" => old("ammount"), "placeholder" => "Amount ...", "type" => "number", "minNum" => 1, "maxNum" => 999999 ]) {{--
--}} @include("cfp.components.form-group", [ "label" => "Price", "name" => "price", "value" => old("price"), "placeholder" => "Price of Product ...", "extra_cls" => "money" ]) @include('cfp.components.form-group', ["control" => "button", "value" => "Register Product"])
@endsection @section('js') @endsection