diff --git a/lang/en/messages.php b/lang/en/messages.php index f6339ba62df..8e92c1c6e4f 100644 --- a/lang/en/messages.php +++ b/lang/en/messages.php @@ -155,6 +155,7 @@ 'globals_blueprint_instructions' => 'Controls the fields to be displayed when editing the variables.', 'globals_configure_handle_instructions' => 'Used to reference this global set on the frontend. This cannot be easily changed later.', 'globals_configure_intro' => 'A global set is a group of variables available across all front-end pages.', + 'globals_configure_layout_mode_instructions' => 'Choose how fields are arranged when editing this global set.', 'globals_configure_title_instructions' => 'Use a noun representing the set\'s contents, such as \'Brand\' or \'Company\'', 'impersonate_action_confirmation' => 'You will be logged in as this user. You can return to your account using the avatar menu.', 'licensing_config_cached_warning' => 'Any changes you make to your .env or config files will not be detected until you clear the cache. If you are seeing unexpected licensing results here, it may be because of this. You can use the php artisan config:cache command to regenerate the cache.', diff --git a/resources/js/components/globals/PublishForm.vue b/resources/js/components/globals/PublishForm.vue index 60bc7788000..1d8b17fb603 100644 --- a/resources/js/components/globals/PublishForm.vue +++ b/resources/js/components/globals/PublishForm.vue @@ -74,6 +74,7 @@ :name="publishContainer" :reference="reference" :blueprint="fieldset" + :as-config="asConfig" v-model="values" :meta="meta" :origin-values="originValues" @@ -148,6 +149,7 @@ export default { canConfigure: Boolean, configureUrl: String, canEditBlueprint: Boolean, + asConfig: Boolean, }, data() { diff --git a/resources/js/pages/globals/Edit.vue b/resources/js/pages/globals/Edit.vue index ec09a6d5e07..5f585ed358b 100644 --- a/resources/js/pages/globals/Edit.vue +++ b/resources/js/pages/globals/Edit.vue @@ -10,6 +10,7 @@ defineProps([ 'reference', 'blueprintHandle', 'blueprint', + 'asConfig', 'values', 'localizedFields', 'meta', @@ -28,7 +29,7 @@ defineProps([