@extends('admin.layouts.app') @push('styles_top') @endpush @section('content') {{ $pageTitle }} {{ trans('admin/main.dashboard') }} {{ $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') }} {{ (!empty($product) and $product->message_for_reviewer) ? $product->message_for_reviewer : old('message_for_reviewer') }} @endif {{ !empty($product) ? trans('admin/main.save_and_publish') : trans('admin/main.save_and_continue') }} @if(!empty($product)) {{ trans('public.reject') }} @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