Choose a service plan for this device
{!! Form::open(['route' => ['register.step.store', 'plan'], 'method' => 'POST']) !!} @if ($plans->isEmpty())
There are no billing plans available for this type of device!
@endif

@foreach ($plans->where('duration_type', 'months') as $key => $plan)
@include('Frontend.CustomRegistration.partials.plan', ['selected' => $plan->id == $device_plan_id])
@endforeach
@foreach ($plans->where('duration_type', 'years') as $key => $plan)
@include('Frontend.CustomRegistration.partials.plan', ['selected' => $plan->id == $device_plan_id])
@endforeach

@if (!empty($backUrl)) {!! trans('global.back') !!} @endif @if (!$plans->isEmpty()) @endif {!! Form::close() !!}