{!! html()->label('Code')->for('name')->class('form-label') !!}
{!! html()->text('name', ((request()->has('code')) ? request()->get('code') : (isset($reference) ? $reference->name : old('name'))))->class('form-control') !!}
{!! html()->label('Description')->for('description')->class('form-label') !!}
{!! html()->textarea('description', (isset($reference) ? $reference->description : old('description')))->class('form-control') !!}
{!! html()->label('Year')->for('year')->class('form-label') !!}
{!! html()->text('year', (isset($reference) ? $reference->ref_year : old('year')))->class('form-control') !!}
{!! html()->label('Organization')->for('organization')->class('form-label') !!}
{!! html()->text('organization', (isset($reference) ? $reference->organization : old('organization')))->class('form-control') !!}