@extends('admin.layouts.app') @push('styles_top') @endpush @section('content')

{{ $pageTitle }}

@if ($errors->any())
{{ trans('update.please_fix_the_error_fields_that_are_specified') }}
@endif
{{ csrf_field() }} @include('admin.store.products.create.basic_information') @if(!empty($product)) @include('admin.store.products.create.extra_information') @include('admin.store.products.create.image_and_files') @include('admin.store.products.create.category_and_specification')

{{ trans('public.message_to_reviewer') }}

@endif
@if(!empty($product)) @include('admin.includes.delete_button',[ 'url' => getAdminPanelUrl().'/store/products/'. $product->id .'/delete', 'btnText' => trans('public.delete'), 'hideDefaultClass' => true, 'btnClass' => 'btn btn-danger' ]) @endif
@include('admin.store.products.create.modals.file_description_modal') @include('admin.store.products.create.modals.file_modal') @endsection @push('scripts_bottom') @endpush