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

Edit season

{{ render('common.year_errors') }} {{ Form::open('year/update', 'PUT') }}

{{ 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::hidden('year_id', $year->year_id) }}

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

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