@extends('layouts/layout')

@section('content')
    <div class="page-content">
        <div class="max-w-xl mx-auto sm:px-6 lg:px-8">
            <div class="flex flex-col items-center pt-8 sm:justify-start gap-6 sm:pt-0">
                <h1 class="px-4 text-gray-500 border-b border-gray-400 tracking-wider">
                    Erreur @yield('code')
                </h1>

                <div class=" text-center ml-4 text-lg text-gray-500 tracking-wider">
                    @yield('message')
                </div>
                <div class=" text-center ml-4 text-lg text-gray-500 tracking-wider">
                    <a class="btn btn-block" href="{{ route('home') }}">Revenir à l'accueil</a>
                </div>
            </div>
        </div>
    </div>
@endsection
