@extends('layouts.app') @section('title', $stage->exists ? "Editer une étape" : "Créer une étape") @section('side_bar') @include('layouts.admin.side_bar_dashboard') @endsection @section('content')

@yield('title')

@csrf @method($stage->exists ? 'put':"post") @include ('shared.input', ['type' => 'text', 'name' => 'text', 'label' => 'Description de l\'étape', 'value' => old('text', $stage->text)])
@endsection