@extends('layouts.admin', ['title' => ($product->exists ? 'تعديل منتج' : 'منتج جديد')]) @section('content')

{{ $product->exists ? 'تعديل منتج' : 'إنشاء منتج جديد' }}

رتب المنتج، حدد طريقة التسليم، واضبط السعر والمخزون والنقاط المكتسبة.

@if($errors->any())
{{ $errors->first() }}
@endif
@csrf @if($product->exists) @method('PATCH') @endif
@endsection