@php $state = $state ?? null; $locale = request()->locale ?? app()->getLocale(); $translations = []; if ($state && $locale) { $translations = parse_translation($state, $locale); } @endphp {{ isset($state) ? translate('Edit') : translate('Create') }} {{ translate('State') }} @if (is_active('state.translate') === 'active')

{{ translate('Translate Language') }}

@endif
@if (isset($state)) @method('put') @endif @csrf