{{ __('Create new Deduction Bill') }}

{!! Form::open(['url' => route('bills.deductions.store')]) !!}
@php($class = "rounded-md shadow-sm border-gray-300 focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50 block mt-1 w-full")
{!! Form::label('month', 'Month', ['class' => 'required']) !!}
{!! Form::selectMonth('month', date('M'), ['class' => $class]) !!}
{!! Form::label('year', 'Year', ['class' => 'required']) !!}
{!! Form::selectYear('year', 2000, date('Y')+1, date('Y'), ['class' => $class]) !!}
{{ __('Cancel') }} {{ __('Save') }}
{!! Form::close() !!}