@extends('layouts.admin') @section('title', isset($product) ? __('app.edit') . ' ' . __('app.product') : __('app.create') . ' ' . __('app.product')) @section('content')

{{ isset($product) ? __('app.edit') : __('app.create') }} {{ __('app.product') }}

{{ __('app.back') }}
@csrf @if(isset($product)) @method('PUT') @endif
@error('name_ar')

{{ $message }}

@enderror
@error('name_en')

{{ $message }}

@enderror
@error('sku')

{{ $message }}

@enderror
@if(isset($product) && $product->image) @endif
@if(isset($product) && $product->gallery)
@foreach($product->gallery as $img) @endforeach
@endif
@endsection