{!! 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('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']) !!}
@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