{!! Form::radio('genre', 'Homme', null, ['class' => 'form-control', 'id' => 'Homme']) !!} {!! Form::radio('genre', 'Femme', null, ['class' => 'form-control', 'id' => 'Femme']) !!} @if ($errors->has('genre'))
{{ $errors->first('genre') }} @endif
{!! Form::text('prenom', null, ['class' => 'form-control', 'placeholder' => 'Prénom', 'id' => 'prenom', 'required']) !!} @if ($errors->has('prenom')) {{ $errors->first('prenom') }} @endif
{!! Form::text('nom', null, ['class' => 'form-control', 'placeholder' => 'Nom', 'id' => 'nom', 'required']) !!} @if ($errors->has('nom')) {{ $errors->first('nom') }} @endif
@if(Request::is('parametres'))
{!! Form::date('date_naissance', null, ['class' => 'form-control', 'placeholder' => 'aaaa-mm-jj', 'id' => 'date_naissance']) !!} @if ($errors->has('date_naissance')) {{ $errors->first('date_naissance') }} @endif
@endif
{!! Form::text('titre', null, ['class' => 'form-control', 'placeholder' => 'Développeur, Chef de projet, ...', 'id' => 'titre', 'required']) !!} @if ($errors->has('titre')) {{ $errors->first('titre') }} @endif
{!! Form::text('formation', null, ['class' => 'form-control', 'placeholder' => 'Formation', 'id' => 'formation', 'required']) !!} @if ($errors->has('formation')) {{ $errors->first('formation') }} @endif
@if ($errors->has('formation')) {{ $errors->first('formation') }} @endif
@if ($errors->has('formation')) {{ $errors->first('formation') }} @endif
@if(Request::is('parametres'))
{!! Form::url('lien_cv_linkedin', null, ['class' => 'form-control', 'placeholder' => 'https://www.linkedin.com/in/exemple', 'id' => 'lien_cv_linkedin']) !!} @if ($errors->has('lien_cv_linkedin')) {{ $errors->first('lien_cv_linkedin') }} @endif
@endif @if(Request::is('parametres'))
{!! Form::textarea('apropos', null,['id' => 'apropos', 'class'=>'form-control', 'rows' => 10]) !!} @if ($errors->has('apropos')) {{ $errors->first('apropos') }} @endif
@endif