@layout('layouts.default') @section('content')

Add a new year

{{ render('common.year_errors') }} {{ Form::open('year/create', 'POST') }}

{{ Form::label('year_id', 'ID:') }}
{{ Form::text('year_id', Input::old('year_id')) }}

{{ Form::label('year_label', 'Label:') }}
{{ Form::text('year_label', Input::old('year_label')) }}

{{ Form::label('is_current', 'is current:') }}
{{ Form::text('is_current', Input::old('is_current')) }}

{{ Form::submit('add year' , array( 'class' => 'button')) }}

{{ Form::close() }} @endsection