{!! Form::text('name', null, ["placeholder" => "Nom", "class" => "form-control", "required"]) !!} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{!! Form::text('sigle', null, ["placeholder" => "Exp : CNP", "class" => "form-control", "required"]) !!} @if ($errors->has('sigle')) {{ $errors->first('sigle') }} @endif
{!! Form::select('secteur_id', $secteurs, null, ["class" => "form-control", "required"]) !!} {{-- {!! Form::text('name', null, ["placeholder" => "Nom", "class" => "form-control", "required"]) !!} --}} @if ($errors->has('secteur_id')) {{ $errors->first('secteur_id') }} @endif
{!! Form::text('president', null, ["placeholder" => "Président", "class" => "form-control"]) !!} @if ($errors->has('president')) {{ $errors->first('president') }} @endif
{!! Form::text('secretaire', null, ["placeholder" => "Secrétaire", "class" => "form-control"]) !!} @if ($errors->has('secretaire')) {{ $errors->first('secretaire') }} @endif
{!! Form::email('email', null, ["placeholder" => "Email", "class" => "form-control"]) !!} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{!! Form::text('adresse', null, ["placeholder" => "Adresse", "class" => "form-control"]) !!} @if ($errors->has('adresse')) {{ $errors->first('adresse') }} @endif
{!! Form::text('contact', null, ["placeholder" => "Exp : 33 800 00 00", "class" => "form-control"]) !!} @if ($errors->has('contact')) {{ $errors->first('contact') }} @endif
{!! Form::url('url', null, ["placeholder" => "http://www.cnp.sn", "class" => "form-control"]) !!} @if ($errors->has('url')) {{ $errors->first('url') }} @endif
{!! Form::textarea('description', null, ["class" => "form-control", "id" => "description"]) !!} @if ($errors->has('description')) {{ $errors->first('description') }} @endif
{!! Form::file('logo', null, ["placeholder" => "Logo", "class" => "form-control"]) !!} @if ($errors->has('logo')) {{ $errors->first('logo') }} @endif