@extends('layouts.app') @section('content')
@php $categories = [ [ 'icon' => 'ti-music', 'title' => 'Music Playback', 'description' => 'Issues with playing songs or albums', ], [ 'icon' => 'ti-user', 'title' => 'Account & Profile', 'description' => 'Manage your account settings and profile', ], [ 'icon' => 'ti-credit-card', 'title' => 'Billing & Payments', 'description' => 'Questions about payments and subscriptions', ], [ 'icon' => 'ti-download', 'title' => 'Downloads & Storage', 'description' => 'Help with downloading and storing music', ], [ 'icon' => 'ti-device-mobile', 'title' => 'Mobile App', 'description' => 'Support for our mobile applications', ], [ 'icon' => 'ti-shield', 'title' => 'Privacy & Security', 'description' => 'Information about data protection', ], ]; @endphp @foreach ($categories as $category)
@endforeach

Frequently Asked Questions

@php $faqs = [ [ 'question' => 'How do I verify my account as an artist?', 'answer' => 'To verify your account as an artist, go to your profile settings and click on "Verification". Upload the required documents including your ID and proof of your music work. Our team will review your application within 3-5 business days.', ], [ 'question' => 'How can I create a cover of a song?', 'answer' => 'To create a cover, first purchase the license for the song you want to cover. Then go to "My Assets" in your profile, find the purchased song, and click on "Create Cover". Upload your cover version and fill in the required details.', ], [ 'question' => 'What payment methods do you accept?', 'answer' => 'We accept various payment methods including credit/debit cards, bank transfers, and digital wallets like PayPal. All payments are processed securely through our payment gateway.', ], [ 'question' => 'How do I withdraw my earnings?', 'answer' => 'To withdraw your earnings, go to your Dashboard, click on "Earnings", and select "Withdraw". You need to have a minimum balance of Rp. 100,000 to request a withdrawal. Funds will be transferred to your registered bank account within 3-5 business days.', ], [ 'question' => 'How do royalties work for composers?', 'answer' => 'Composers earn royalties whenever their original compositions are streamed, downloaded, or covered by other artists. The royalty rate is 70% of the net revenue generated. Payments are processed monthly and can be viewed in your earnings dashboard.', ], ]; @endphp @foreach ($faqs as $index => $faq)

{{ $faq['answer'] }}
@endforeach

Still need help?

Our support team is available to assist you with any questions or issues you may have. Please fill out the form and we'll get back to you as soon as possible.

Email Support

support@playlistmusic.co.id

Phone Support

+62 812 3456 7890 (Mon-Fri, 9AM-5PM)

Live Chat

Available 24/7 for premium users

Contact Support

@endsection @section('scripts') @endsection