{!! Form::label('name', 'Nom du projet*', ['class' => 'black-text font-weight-bold form-control-label']) !!}
{!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => 'Nom du projet']) !!} @if($errors->has('name')) {{$errors->first('name')}} @endif
{!! Form::label('web_link', 'Lien vers site web*', ['class' => 'black-text font-weight-bold form-control-label']) !!}
{!! Form::text('web_link', null, ['class' => 'form-control', 'placeholder' => 'http://www.exemple.com']) !!} @if($errors->has('web_link')) {{$errors->first('web_link')}} @endif
{!! Form::label('siege', 'Lieu du Siège*', ['class' => 'black-text font-weight-bold form-control-label']) !!}
{!! Form::text('siege', null, ['class' => 'form-control', 'placeholder' => 'Siège']) !!} @if($errors->has('siege')) {{$errors->first('siege')}} @endif
{!! Form::label('date_creation', 'Date de création*', ['class' => 'black-text font-weight-bold form-control-label']) !!}
{!! Form::date('date_creation', null, ['class' => 'form-control', 'placeholder' => 'aaaa-mm-dd' ]) !!} @if($errors->has('date_creation')) {{$errors->first('date_creation')}} @endif
{!! Form::label('category_id', 'Catégorie*', ['class' => 'black-text font-weight-bold form-control-label']) !!}
@if($errors->has('category_id')) {{$errors->first('category_id')}} @endif
{!! Form::label('country_id', 'Pays*', ['class' => 'black-text font-weight-bold form-control-label']) !!}
@if($errors->has('country_id')) {{$errors->first('country_id')}} @endif
@if(Request::is('projet/create'))
{!! Form::label('status_id', 'Statut du projet*', ['class' => 'black-text font-weight-bold form-control-label']) !!}
@if($errors->has('status_id')) {{$errors->first('status_id')}} @endif
@endif
{!! Form::label('need_id', 'Vous recherchez*', ['class' => 'black-text font-weight-bold form-control-label ']) !!}
@if($errors->has('need_id')) {{$errors->first('need_id')}} @endif
@if(Request::is('projet/create'))
{!! Form::label('img_url', 'Image*', ['class' => 'black-text font-weight-bold form-control-label']) !!}
Choisir une image
@if($errors->has('img_url')) {{$errors->first('img_url')}} @endif
@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' ]) !!} @if($errors->has('description')) {{$errors->first('description')}} @endif