Store Records
{!! Form::text('name', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('name', '

:message

') !!}
{!! Form::text('section', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('section', '

:message

') !!}
{!! Form::text('bin', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('bin', '

:message

') !!}
{!! Form::select('status', ['Inactive', 'Active'], null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('status', '

:message

') !!}
{!! Form::submit(isset($submitButtonText) ? $submitButtonText : 'Create', ['class' => 'btn green']) !!}