@extends('layouts.premium') @section('content')
{{-- ═══ SETTINGS PANEL ═══ --}}

Lyric Settings

@csrf {{-- Genre --}}
{{-- Theme --}}
{{-- Mood --}}
@php $moods = ['Happy'=>'😄','Sad'=>'😢','Energetic'=>'⚡','Reflective'=>'🤔', 'Romantic'=>'💖','Angry'=>'🔥','Chill'=>'😌','Mysterious'=>'🌙', 'Melancholic'=>'🌧️','Playful'=>'🎉','Nostalgic'=>'🕰️','Confident'=>'💪']; @endphp
@foreach($moods as $m => $emoji) @endforeach
{{-- Length & Language --}}
@if($errors->has('api_error'))
{{ $errors->first('api_error') }}
@endif @auth @else Sign In to Generate @endauth
{{-- ═══ LYRICS DISPLAY ═══ --}}

Generated Lyrics

@if(isset($lyrics)) {!! nl2br(preg_replace('/\[(.*?)\]/', '[$1]', e($lyrics))) !!} @else

Your creative journey starts here.
Configure the settings and click Generate.

@endif
Optimized for Suno AI v3.5 & v4 0 words
@endsection