Bonjour,
j'ai créé un fichier create.blade.php sous links, l'url localhost/links/create affiche : View [default] not found
voila le code
@extends('default')
@section('content')
<h1>
raccourcir un nouveau lien
</h1>
<forme action="" methode="post">
<div class="form-group">
<label for="url">lien à raccourcir</label>
<input type="text" name="url" id="url" placeholder="http://...." class="form-control">
</div>
<div class="form-group">
<button class="btn btn-primary">raccourcir</button>
</div>
</forme>
@stop
merci d'avance j ai besoin de votre aide
Le template default
duquel tu souhaites hériter n'existe tout simplement pas, ou le chemin n'est pas bon.