{{-- \resources\views\permissions\create.blade.php --}} @extends('layout') @section('title', '| Modifier Région') @section('content')

GESTION DES LIGNES D'ACTION

{!! Form::model($action, ['method'=>'PATCH','route'=>['action.update', $action->id]]) !!} @csrf
FORMULAIRE DE MODIFICATION D'UNE LIGNE D'ACTION
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{!! Form::close() !!}
@endsection