{!! Form::open(['url' => action([\App\Http\Controllers\UsersLocationsPurchaseController::class, 'storePurhaseLocations']), 'method' => 'post' ]) !!}

@lang( 'messages.purchase_users' )

{!! Form::label('price_location', __( 'users_locations_purchase.location_price' ) . ':*') !!} {!! Form::number('price_location', $locationPrice, [ 'class' => 'form-control price-input', 'step' => '0.01', 'min' => '0', 'readonly' => 'readonly' ]) !!}
{!! Form::label('locations_count', __( 'users_locations_purchase.locations_count' ) . ':*') !!}
{!! Form::number('locations_count', 1, [ 'class' => 'form-control text-center count-input', 'min' => 1, 'max' => 100 ]) !!}
{!! Form::close() !!}