15 lines
272 B
PHP
15 lines
272 B
PHP
@extends('layouts.site', [
|
|
'title' => 'Accueil',
|
|
'subtitle' => '',
|
|
'breadcrumb' => ['Accueil']
|
|
])
|
|
|
|
@section('content')
|
|
|
|
@component('components.layout.box-collapse', ['title' => __('person_in_charge'), 'id' => 'form-contact'])
|
|
TEST
|
|
@endcomponent
|
|
|
|
|
|
@endsection
|