@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') title @endslot @slot('placeholder') {{ __('Enter Subscription Title') }} @endslot @slot('value') title @endslot {{ __('Title') }} * @endcomponent

{{ __('Cost') }} * ({{ __('In') }} {{ $curr->name }})

{{ __('Days') }} *

{{ __('Product Limitations') }}*

{{ __('Allowed Products') }} *

allowed_products != 0 ? 'required' : '' }} value="{{ $data->allowed_products != 0 ? $data->allowed_products : '1' }}">
@component('admin.components.input-localized', ['type' => 'richtext', 'from' => $data]) @slot('name') details @endslot @slot('placeholder') {{ __('Details') }} @endslot @slot('value') details @endslot {{ __('Details') }} @endcomponent
@endsection @section('scripts') @endsection