@extends('layouts.load') @section('content')
@include('alerts.admin.form-error')
{{csrf_field()}} @if($data->type == 'automatic')

{{ __('Name') }} *

{{ __('(In Any Language)') }}

@if($data->information != null) @foreach($data->convertAutoData() as $pkey => $pdata) @if($pkey == 'sandbox_check')

{{ __( $data->name.' '.ucwords(str_replace('_',' ',$pkey)) ) }} *

@else

{{ __( $data->name.' '.ucwords(str_replace('_',' ',$pkey)) ) }} *

{{ __('(In Any Language)') }}

@endif @endforeach
@php $setCurrency = json_decode($data->currency_id); if($setCurrency == 0){ $setCurrency = []; } @endphp @foreach(DB::table('currencies')->get() as $dcurr)
  • id,$setCurrency) ? 'checked' : ''}} type="checkbox" id="currency_id{{$dcurr->id}}" value="{{$dcurr->id}}">
@endforeach @endif @else

{{ __('Name') }} *

{{ __('(In Any Language)') }}

{{ __('Subtitle') }} *

@if($data->keyword == null)

{{ __('(Optional)') }}

@else

{{ __('(In Any Language)') }}

@endif
@if($data->keyword == null)

{{ __('Description') }} *

@endif @endif
@endsection