22 lines
587 B
PHP
22 lines
587 B
PHP
@include('boilerplate::load.tinymce')
|
|
|
|
<div class="row">
|
|
<div class="col-md-8">
|
|
{{ Form::label('name', 'Nom') }}
|
|
@include('components.form.input', ['name' => 'name', 'value' => $article_nature['name'] ?? null, 'required' => true])
|
|
|
|
{{ Form::label('description', 'Description') }}
|
|
@include('components.form.textarea', ['name' => 'description', 'value' => $article_nature['description'] ?? null, 'class' => 'editor', 'required' => false])
|
|
|
|
</div>
|
|
</div>
|
|
|
|
@include('components.save')
|
|
|
|
@push('js')
|
|
<script>
|
|
$(function() {
|
|
$('.editor').tinymce({});
|
|
});
|
|
</script>
|
|
@endpush |