{!! Form::label('nom', 'Nom de l\' organisation*', ['class' => 'black-text font-weight-bold form-control-label']) !!}
{!! Form::text('nom', null, ['class' => 'form-control', 'placeholder' => 'Nom de l\' organisation']) !!} @if($errors->has('nom')) {{$errors->first('nom')}} @endif
{!! Form::label('liensMedia', 'Lien vers media*', ['class' => 'black-text font-weight-bold form-control-label']) !!}
{!! Form::text('liensMedia', null, ['class' => 'form-control', 'placeholder' => 'http://www.exemple.com']) !!} @if($errors->has('liensMedia')) {{$errors->first('liensMedia')}} @endif
{!! Form::label('lieuSiege', 'Lieu du Siège*', ['class' => 'black-text font-weight-bold form-control-label']) !!}
{!! Form::text('lieuSiege', null, ['class' => 'form-control', 'placeholder' => 'Siège']) !!} @if($errors->has('lieuSiege')) {{$errors->first('lieuSiege')}} @endif
{!! Form::label('dateCreation', 'Date de création*', ['class' => 'black-text font-weight-bold form-control-label']) !!}
{!! Form::date('dateCreation', null, ['class' => 'form-control', 'placeholder' => 'aaaa-mm-dd' ]) !!} @if($errors->has('dateCreation')) {{$errors->first('dateCreation')}} @endif
{!! Form::label('statutLegal', 'Statut de légal*', ['class' => 'black-text font-weight-bold form-control-label']) !!}
@if($errors->has('statutLegal')) {{$errors->first('statutLegal')}} @endif
{!! Form::label('nomFondateur', 'Nom du fondateur*', ['class' => 'black-text font-weight-bold form-control-label']) !!}
{!! Form::text('nomFondateur', null, ['class' => 'form-control', 'placeholder' => 'Nom du fondateur']) !!} @if($errors->has('nomFondateur')) {{$errors->first('nomFondateur')}} @endif
@if(Request::is('organisation/create'))
{!! Form::label('logo', 'Image*', ['class' => 'black-text font-weight-bold form-control-label']) !!}
Choisir une image
@if($errors->has('logo')) {{$errors->first('logo')}} @endif
@endif {{--
{!! Form::label('motCles', 'Mots cles*', ['class' => 'black-text font-weight-bold form-control-label']) !!}
{!! Form::text('motsCles', null, ['class' => 'form-control', 'placeholder' => 'Mots cles*']) !!} @if($errors->has('motsCles')) {{$errors->first('motsCles')}} @endif

--}}
{!! Form::label('description', 'description*', ['class' => 'black-text font-weight-bold form-control-label pb-2']) !!}
{!! Form::textarea('description', null, ['class' => 'form-control', 'id'=>"description", 'rows'=>"10"]) !!} @if($errors->has('description')) {{$errors->first('description')}} @endif