@extends('Layouts.adminLayout') @section('title') {{__('Edit Product')}} @endsection @section('breadcrumb')
@endsection @section('content') @php $arrayShort_description=[];@endphp @php $arrayShort_description=json_decode($data['product']->short_description); @endphp

{{__('Edit Product')}}

@CSRF
@if ($errors->has('lang'))
{{ $errors->first('lang') }}
@endif
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('english_title'))
{{ $errors->first('english_title') }}
@endif
@if ($errors->has('code'))
{{ $errors->first('code') }}
@endif
@if ($errors->has('accounting_code'))
{{ $errors->first('accounting_code') }}
@endif
@if ($errors->has('refund'))
{{ $errors->first('refund') }}
@endif
@if ($errors->has('fast_sending'))
{{ $errors->first('fast_sending') }}
@endif
@if ($errors->has('file'))
{{ $errors->first('file') }}
@endif
@if ($errors->has('brand'))
{{ $errors->first('brand') }}
@endif
@if ($errors->has('weight'))
{{ $errors->first('weight') }}
@endif
@if ($errors->has('length'))
{{ $errors->first('length') }}
@endif
@if ($errors->has('width'))
{{ $errors->first('width') }}
@endif
@if ($errors->has('height'))
{{ $errors->first('height') }}
@endif
@if ($errors->has('type'))
{{ $errors->first('type') }}
@endif
@if ($errors->has('seo'))
{{ $errors->first('seo') }}
@endif
@if ($errors->has('meta_title'))
{{ $errors->first('meta_title') }}
@endif
@if ($errors->has('meta_tags'))
{{ $errors->first('meta_tags') }}
@endif
@if ($errors->has('meta_description'))
{{ $errors->first('meta_description') }}
@endif
@if ($errors->has('facebook_meta_tags'))
{{ $errors->first('facebook_meta_tags') }}
@endif
@if ($errors->has('facebook_meta_image'))
{{ $errors->first('facebook_meta_image') }}
@endif @if($data['product']->meta_data != NULL and $data['product']->meta_data->facebook_meta_image != '') @endif
@if ($errors->has('facebook_meta_description'))
{{ $errors->first('facebook_meta_description') }}
@endif
@if ($errors->has('twitter_meta_tags'))
{{ $errors->first('twitter_meta_tags') }}
@endif
@if ($errors->has('twitter_meta_image'))
{{ $errors->first('twitter_meta_image') }}
@endif @if($data['product']->meta_data != NULL and $data['product']->meta_data->twitter_meta_image != '' ) @endif
@if ($errors->has('twitter_meta_description'))
{{ $errors->first('twitter_meta_description') }}
@endif
@if ($errors->has('keywords'))
{{ $errors->first('keywords') }}
@endif


{{__('Product Features')}}

@if($arrayShort_description!=null) @foreach($arrayShort_description as $key => $item) @endforeach @endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@endsection @section('script') @endsection