@extends('layouts.app') @section('title', 'Modifier - Projet') @section('content')

Modifier {{ $project->name }}

{!! Form::model($project, ['method' => 'PUT', 'url' => route('projet.update', $project)]) !!} {{ csrf_field() }} @include('project.form') {!! Form::hidden('slug', null, []) !!}
{!! Form::close() !!}
@endsection @section('script') @endsection