Ajouter une thématique
{!! Form::model($thematique, ['method' => 'PUT', "url" => route('admin-cnp.thematiques.update', $thematique)]) !!}
{!! Form::text('name', null, ["placeholder" => "Nom", "class" => "form-control", "required"]) !!}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{!! Form::close() !!}