@extends('user.layout.master') @section('title', 'Choose Template') @section('content')
Choose Template

Choose Your Template

Select a professional template to create your resume

@foreach($templates as $template)
@if($template->type === 'premium') Premium @else Free @endif
{{ $template->name }}

{{ $template->description }}

@php $tagsValue = $template->tags; $tagsArray = is_array($tagsValue) ? $tagsValue : (strlen((string)$tagsValue) ? explode(',', (string)$tagsValue) : []); @endphp @foreach($tagsArray as $tag) {{ trim($tag) }} @endforeach
@endforeach
@csrf
@endsection