@extends('frontend.layouts.home')

@section('header.title')
    @yield('title')
@endsection

@section('main')
    <section class="py-5 bg-primary text-light">
        <div class="container text-center">
            @hasSection('title')
                <h1 class="mb-5">
                    @yield('title')
                </h1>
            @endif

            <div class="ml-4 text-lg text-gray-500 uppercase tracking-wider">
                @yield('message')

                <div class="mt-3">
                    <a class="btn btn-outline-secondary" href="{{ route('home') }}">Revenir à l'accueil du site</a>
                </div>
            </div>
        </div>
    </section>
@endsection
