@extends('layout')
@section('title', '| Modifier Activité')
@section('content')
{!! Form::model($rapport, ['method'=>'PATCH','route'=>['rapport.update', $rapport->id],'enctype'=>'multipart/form-data']) !!}
@csrf
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{!! Form::close() !!}
@endsection