@layout('layouts.default') @section('content')
{{ Form::label('id', 'ID:') }}
{{ Form::text('id', $year->year_id) }}
{{ Form::label('year_label', 'Label:') }}
{{ Form::text('year_label', $year->year_label) }}
{{ Form::label('is_current', 'is current:') }}
{{ Form::text('is_current', $year->is_current) }}
{{ Form::submit('save' , array( 'class' => 'button')) }}
{{ Form::close() }} @endsection