{{-- \resources\views\permissions\create.blade.php --}} @extends('welcome') @section('title', '| Modifier type') @section('content')
Modifier type
ACCUEIL
RETOUR
{!! Form::model($type, ['method'=>'PATCH','route'=>['type.update', $type->id]]) !!} @csrf
FORMULAIRE DE MODIFICATION type
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
Nom
MODIFIER
{!! Form::close() !!}
@endsection