home.blade.php 255 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 @extends('template') @section('title', 'Accueil') @section('header') @parent @endsection @section('content') <h1>Bienvenue</h1> <a href="{{ url('/login') }}"><button type="button" class="btn btn-dark">Connectez-vous</button></a> @endsection