@extends('layouts.app') @section('title', 'Create Playlist') @section('content')
{{-- Page Header --}}
Back to Playlists

Create Playlist

Organize your favorite videos into a custom playlist

{{-- Form Card --}}
@csrf {{-- Name --}}
@error('name')

{{ $message }}

@enderror
{{-- Description --}}
@error('description')

{{ $message }}

@enderror
{{-- Public Toggle --}}
@error('is_public')

{{ $message }}

@enderror
{{-- Actions --}}
Cancel
@endsection