@extends('user.layout.master') @section('title', 'Create Resume') @section('content')
Create New Resume
@csrf
@forelse($templates->take(6) as $template)
Selected
{{ $template->name }}
{{ Str::limit($template->description, 60) }}
@if ($template->is_featured) @endif @if ($template->type === 'premium')
Premium
@endif
{{ $template->category ?? 'General' }}
200
3.5
{{ strtoupper($template->type) }}
@empty
No templates available

Check back later for new templates

@endforelse
@endsection @section('scripts') @endsection