@layout('layouts.default')
@section('content')
{{ $year->year_label . ' [' . $year->year_id . ']' }}
{{ HTML::link_to_route('years' , 'Years', array(),array('class'=>'button')) }}
{{ HTML::link_to_route('edit_year' , 'Edit year', array($year->year_id), array('class'=>'button')) }}
{{ Form::open('year/delete', 'DELETE', array('style' => 'display:inline ;' )) }}
{{ Form::hidden('year_id', $year->year_id) }}
{{ Form::submit('delete' , array( 'class' => 'button')) }}
{{ Form::close()}}
@endsection