Please choose one of the following
@include('layouts/form_errors')
{!! Form::open(array('url' => 'advertisement/new', 'method' => 'post', 'class' => 'form-horizontal dialog-form', 'autocomplete' => 'off')) !!}
@foreach ($ads_categories as $ad_cat)
@permission($ad_cat['api_name'] . '.items')
@if (!isAdmin() && !$user->can_sell && !$user->hasSalvoSite && $ad_cat['payable'] && $user->credits == 0)
{!! Form::radio('ad_category', null, null, array('disabled')) !!}
{{ $ad_cat['name'] }}
To list a new item in this category please
purchase
more credits in the listings page on your
dashboard.
@else
{!! Form::radio('ad_category', $ad_cat['api_name']) !!}
{{ $ad_cat['name']}}
@endif
{{ $ad_cat['description'] }}
@endpermission
@endforeach
@if(auth()->user()->hasPermission('import.transfer'))
{!! Form::radio('transfer_items', 1) !!}Upload XSLX file
Export or import your items
@endif
{!! Form::close() !!}