@extends('layouts.app') @section('title', $course->meta_title ?: $course->title . ' | Angel Care Institute') @push('styles') @if($course->meta_keywords) @endif @endpush @section('content') {{-- Hero --}}
{{-- Left: info --}}
{{-- Breadcrumb --}} {{-- Badges --}}
@if($course->duration) {{ $course->duration }} @endif @if($course->certification) {{ $course->certification }} @endif @if($course->is_featured) Most Popular @endif

{{ $course->title }}

{{ $course->short_description }}

{{-- Quick facts --}}
@if($course->starting_date)
Starting Date
{{ $course->formatted_starting_date }}
@endif @if($course->mode)
Mode
{{ $course->mode }}
@endif @if($course->max_students)
Max Students
{{ $course->max_students }} Only
@endif
{{-- CTA --}}
{{-- Right: course image --}}
@if($course->featured_image && file_exists(public_path('uploads/courses/'.$course->featured_image))) {{ $course->title }} @else
@endif
{{-- Wave --}}
{{-- Long Description --}}
@if($course->long_description)
{!! $course->long_description !!}
@endif {{-- Course application --}}
Course Application

Apply for {{ $course->title }}

Seats are limited. Submit your details and our team will contact you within 24 hours.

@include('components.forms.course-application', ['course' => $course, 'countries' => $countries ?? collect(), 'selectedCourse' => $course, 'source' => 'course-detail'])
@endsection