@extends('layouts.load') @section('content')
@include('includes.admin.form-error')
{{csrf_field()}}

* {{ __("indicates a required field") }}

@component('admin.components.input-localized',["required" => true, "from" => $data]) @slot('name') name @endslot @slot('placeholder') {{ __('Enter Name') }} @endslot @slot('value') name @endslot {{ __('Name') }} * @endcomponent

{{ __('Current Icon') }}

@if ($data->photo)
@endif
@if(env("ENABLE_CUSTOM_PRODUCT"))
is_customizable != 0 ? "checked":"" }}>
@endif @if(env("ENABLE_CUSTOM_PRODUCT_NUMBER"))
is_customizable_number != 0 ? "checked":"" }}>
@endif
is_featured != 0 ? "checked":"" }}>

{{ __('Banner') }} *

@if ($data->banner)
@endif

{{ __('Prefered Size: (1920x400) or Rectangular Sized Image') }}

@endsection