SIP Plan List
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{{ Form::model($goldplan, ['route' => ['sip-plans.update', $goldplan->id], 'method' => 'PUT']) }}
@endforeach
{{ Form::label('name', 'Name', ['class' => 'form-label']) }}
{{ Form::text('name', $goldplan->name, ['class' => 'form-control']) }}
{{ Form::label('price', 'Price', ['class' => 'form-label']) }}
{{ Form::number('price', $goldplan->price, ['class' => 'form-control']) }}
{{ Form::label('no_months', 'No Months', ['class' => 'form-label']) }}
{{ Form::number('no_months', $goldplan->no_months, ['class' => 'form-control']) }}
{{ Form::label('sip_per_month', 'Sip Per Month', ['class' => 'form-label']) }}
{{ Form::number('sip_per_month', $goldplan->sip_per_month, ['class' => 'form-control']) }}
{{ Form::label('maturity', 'Maturity', ['class' => 'form-label']) }}
{{ Form::number('maturity', $goldplan->maturity, ['class' => 'form-control']) }}
{{ Form::submit('Edit', ['class' => 'btn btn-primary']) }}
{{ Form::close() }}