@extends('layout') @section('title', '| Modifier Activité') @section('content')

Modifier Activité

{!! Form::model($rapport, ['method'=>'PATCH','route'=>['rapport.update', $rapport->id],'enctype'=>'multipart/form-data']) !!} @csrf
FORMULAIRE DE MODIFICATION RAPPORT
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{!! Form::close() !!}
@endsection