image SIP Plan List
{{--

SIP Plan List

--}}
@if($errors->any())
@foreach ($errors->all() as $error) {{ $error }}
@endforeach
@endif {!! Form::open(['route' => 'sip-plans.store']) !!}
{{ Form::label('name', 'Name', ['class'=>'form-label']) }} {{ Form::text('name', null, array('class' => 'form-control')) }}
{{ Form::label('price', 'Price', ['class'=>'form-label']) }} {{ Form::number('price', null, array('class' => 'form-control')) }}
{{ Form::label('no_months', 'No Months', ['class'=>'form-label']) }} {{ Form::number('no_months', null, array('class' => 'form-control')) }}
{{ Form::label('sip_per_month', 'Sip Per Month', ['class'=>'form-label']) }} {{ Form::number('sip_per_month', null, array('class' => 'form-control')) }}
{{ Form::label('maturity', 'Maturity', ['class'=>'form-label']) }} {{ Form::number('maturity', null, array('class' => 'form-control')) }}
{{ Form::close() }}