@extends('layouts.user-no-nav') @section('page_title', __('New story')) @section('styles') {!! Minify::stylesheet([ '/libs/dropzone/dist/dropzone.css', '/libs/@selectize/selectize/dist/css/selectize.css', '/css/pages/stories-create.css', ])->withFullUrl() !!} @stop @section('scripts') {!! Minify::javascript([ '/libs/dropzone/dist/dropzone.js', '/libs/@selectize/selectize/dist/js/selectize.min.js', '/js/FileUpload.js', '/js/stories/sound-select.js', '/js/stories/stories-creator.js', '/js/AISuggestions.js', ])->withFullUrl() !!} @stop @section('content')
@include('elements.uploaded-file-preview-template') @include('elements.attachments-uploading-dialog')
{{ __("Create a story") }}
{{-- LEFT: live preview --}}
{{-- top chrome --}}
{{ __("You") }}
{{ __("now") }}
{{-- legibility overlays --}} {{-- overlay text (used in both modes) --}}
{{-- bottom chrome --}} {{-- empty hint (nice before upload) --}}
{{-- RIGHT: controls --}}
{{ __("Story type") }}
{{-- MEDIA STORY TAB --}}

{{ __("Max size") }}: 4 {{ __("MB") }}.

@if(getSetting('ai.text_enabled')) {{ __('AI Suggestion') }} @endif

{{__("Drag to reposition the text")}}.

@if(getSetting('stories.allow_cta_links'))
@endif @if(getSetting('stories.allow_sounds')) @include('elements.stories.story-sound-selector', [ 'idPrefix' => 'media', 'label' => __('Sound') ]) @endif
{{-- TEXT-ONLY STORY TAB --}}
@if(getSetting('ai.text_enabled')) {{ __('AI Suggestion') }} @endif

{{__("Drag to reposition the text")}}.

{{ __("Background color") }}
@if(getSetting('stories.allow_cta_links'))
@endif @if(getSetting('stories.allow_sounds')) @include('elements.stories.story-sound-selector', [ 'idPrefix' => 'text', 'label' => __('Sound') ]) @endif
{{-- Visibility + Share button --}}
@stop