Cover Style @php $currentStyle = $book->cover_style ?? ''; $mainStyles = [ ['key' => 'white-frame', 'label' => 'Elegant Frame'], ['key' => 'green-photo', 'label' => 'Classic with Photo'], ]; $moreStyles = [ ['key' => 'mauve-oval', 'label' => 'Mauve Oval'], ['key' => 'mint-split', 'label' => 'Mint Split'], ['key' => 'coral-split', 'label' => 'Coral Split'], ['key' => 'blush-minimal', 'label' => 'Blush Minimal'], ['key' => 'pink-floral', 'label' => 'Pink Floral'], ['key' => 'light-leaf', 'label' => 'Light Leaf'], ['key' => 'geometric-teal', 'label' => 'Geometric Teal'], ['key' => 'geometric-coral', 'label' => 'Geometric Coral'], ['key' => 'stripes-blue', 'label' => 'Classic Stripes Blue'], ['key' => 'stripes-green', 'label' => 'Classic Stripes Green'], ['key' => 'yellow-stripes', 'label' => 'Yellow Stripes'], ['key' => 'white-stripes', 'label' => 'White Stripes'], ['key' => 'monogram-dark', 'label' => 'Monogram Dark'], ['key' => 'minimal-white', 'label' => 'Minimal White'], ['key' => 'pastel-portrait', 'label' => 'Pastel Portrait'], ['key' => 'peach-block', 'label' => 'Peach Block'], ['key' => 'dark-photo-full', 'label' => 'Dark Photo Full'], ['key' => 'family-stories', 'label' => 'Family Stories'], ['key' => 'nature-portrait', 'label' => 'Nature Portrait'], ['key' => 'my-photo', 'label' => 'My Photo'], ]; @endphp
{{-- Breadcrumb --}}

Choose a cover style

Select a template to customise for your book cover.

{{-- Hidden form for submission --}}
{{-- Main styles --}}
@foreach($mainStyles as $s)
@if($currentStyle === $s['key'])
Selected
@endif {{-- JS-rendered preview (scaled down) --}}

{{ $s['label'] }}

@endforeach
{{-- Older / More styles toggle --}}
{{-- More styles grid (hidden by default) --}}