@extends('backend.layout') @section('content')
{{ __('Add Product') }}
{{ __('Back') }}
    @csrf

    @csrf

    ...
    {{ __('Choose Image') }}
    @if (request()->input('type') == 'physical')

    @endif @if (request()->input('type') == 'digital')

    @endif
    @if (request()->input('type') == 'digital')

    {{ __('Only zip file is allowed') }}

    @endif
    @foreach ($languages as $language)
    @php $categories = DB::table('product_categories') ->where('language_id', $language->id) ->where('status', 1) ->orderByDesc('id') ->get(); @endphp

    @php $currLang = $language; @endphp @foreach ($languages as $language) @continue($language->id == $currLang->id)
    @endforeach
    @endforeach
    @endsection @section('script') @php $languages = App\Models\Language::get(); @endphp @endsection @section('variables') @endsection